Skip to content

Commit

Permalink
add go mod verify task
Browse files Browse the repository at this point in the history
  • Loading branch information
davecheney committed Dec 27, 2020
1 parent 2b65c8a commit 4524dfc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

This comment has been minimized.

Copy link
@cutxo

cutxo Jul 22, 2022

Gracias

- name: Test
run: go test ./...
run: go test -race ./...
- name: Vet
run: go vet ./...
- name: Mod verify
run: go mod verify
- name: Staticcheck
run: |
go get honnef.co/go/tools/cmd/staticcheck
Expand Down

0 comments on commit 4524dfc

Please sign in to comment.