mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-11 02:35:18 +00:00
12 lines
584 B
YAML
12 lines
584 B
YAML
|
runs:
|
||
|
using: "composite"
|
||
|
steps:
|
||
|
- name: increase the UDP receive buffer size # see https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size
|
||
|
shell: bash
|
||
|
run: sysctl -w net.core.rmem_max=2500000
|
||
|
if: ${{ matrix.os == 'ubuntu' }}
|
||
|
- name: Run nocover tests. These are tests that require the coverage analysis to be off # See https://github.com/protocol/.github/issues/460
|
||
|
shell: bash
|
||
|
# This matches only tests with "NoCover" in their test name to avoid running all tests again.
|
||
|
run: go test -tags nocover -run NoCover -v ./...
|