Skip to content

push Go version to 1.17 #10

push Go version to 1.17

push Go version to 1.17 #10

Workflow file for this run

on: [push, pull_request]
name: Go
jobs:
test:
strategy:
matrix:
go-version: [1.17.x, 1.20.x, 1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install libpcap
run: sudo apt-get install -y --no-install-recommends libpcap*
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Ensure gofmt formatting
if: matrix.platform == 'ubuntu-latest' && startsWith(matrix.go-version, '1.21')
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: Download Go dependencies
env:
GOPROXY: "https://proxy.golang.org"
run: go mod download
- name: Test with -race
run: go test -race -count=1 ./...
- name: golint
if: matrix.platform == 'ubuntu-latest'
# https://github.com/actions/setup-go/issues/14
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go get -u golang.org/x/lint/golint
golint -set_exit_status $(go list ./... | grep -v internal/unix)
- name: staticcheck.io
if: matrix.platform == 'ubuntu-latest'
# https://github.com/actions/setup-go/issues/14
run: |
export PATH=$PATH:$(go env GOPATH)/bin
go get -u honnef.co/go/tools/cmd/staticcheck
staticcheck -checks all .