diff options
author | Vincent Ambo <tazjin@google.com> | 2021-04-30T11·01+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-04-30T11·27+0200 |
commit | 768f3986a9399c82fc61ddcd4865d10f3bb93351 (patch) | |
tree | c15a02b2578bc1fff313b9f6c522063581701073 /tools/nixery/.github | |
parent | 13d97c9e51a3c6cc2abcb354bcd0519a49aeed68 (diff) |
feat(build): Run `go vet` as a step in the GitHub Actions workflow
Diffstat (limited to 'tools/nixery/.github')
-rw-r--r-- | tools/nixery/.github/workflows/build-and-test.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/nixery/.github/workflows/build-and-test.yaml b/tools/nixery/.github/workflows/build-and-test.yaml index 2c0aff49d218..d3f258ffaac4 100644 --- a/tools/nixery/.github/workflows/build-and-test.yaml +++ b/tools/nixery/.github/workflows/build-and-test.yaml @@ -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 |