feat(build): Run go vet as a step in the GitHub Actions workflow

This commit is contained in:
Vincent Ambo 2021-04-30 13:01:16 +02:00 committed by Vincent Ambo
parent 13d97c9e51
commit 768f3986a9
2 changed files with 3 additions and 1 deletions

View file

@ -19,6 +19,8 @@ jobs:
run: nix-env -f '<nixpkgs>' -iA go
- name: Check formatting
run: "test -z $(gofmt -l .)"
- name: Run `go vet`
run: "go vet ./..."
- name: Build Nixery
run: "nix-build --no-out-link"
- name: Run integration test