Skip to content

Commit

Permalink
Merge pull request #843 from synfinatic/govulncheck
Browse files Browse the repository at this point in the history
Add govulncheck
  • Loading branch information
synfinatic committed Apr 30, 2024
2 parents 7a883cb + 909d3b6 commit f0662f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

* Add helper aliases for fish shell #361

### Changes

* Builds now run govulncheck

## [v1.15.0] - 2024-04-05

### New Features
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,11 @@ test: vet unittest lint test-homebrew ## Run important tests

precheck: test test-fmt test-tidy ## Run all tests that happen in a PR

govulncheck: ## Run govulncheck
@govulncheck ./...

# run everything but `lint` because that runs via it's own workflow
.build-tests: vet unittest test-tidy test-fmt test-homebrew
.build-tests: vet unittest test-tidy test-fmt test-homebrew govulncheck

$(DIST_DIR):
@if test ! -d $(DIST_DIR); then mkdir -p $(DIST_DIR) ; fi
Expand Down

0 comments on commit f0662f2

Please sign in to comment.