Chore: add static check

This commit is contained in:
Dreamacro 2020-08-25 22:32:23 +08:00
parent 5805334ccd
commit b70882f01a
1 changed files with 4 additions and 1 deletions

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/')