Chore: add static check

This commit is contained in:
gVisor bot 2020-08-25 22:32:23 +08:00
parent 6ca03f5a90
commit 03266bfacb

View file

@ -22,9 +22,12 @@ jobs:
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies and run test
- name: Get dependencies, run test and static check
run: |
go test ./...
go vet ./...
go get -u honnef.co/go/tools/cmd/staticcheck
staticcheck -- $(go list ./...)
- name: Build
if: startsWith(github.ref, 'refs/tags/')