Skip to content

Enable SO_REUSEPORT (#464) #745

Enable SO_REUSEPORT (#464)

Enable SO_REUSEPORT (#464) #745

Workflow file for this run

on: [push, pull_request]
name: tests
jobs:
test:
strategy:
matrix:
go-version: [1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Check format (gofmt)
run: .github/check-gofmt.sh
- name: Test
run: make test-coverage
# Upload Coverage Report
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.txt
flags: unittests
name: codecov-${{ matrix.platform }}-${{ matrix.go-version }}
fail_ci_if_error: true
- name: Build commands and examples
run: make build