Skip to content

Commit

Permalink
make: Add more descriptive help strings to targets
Browse files Browse the repository at this point in the history
  • Loading branch information
mmlb committed May 10, 2024
1 parent 1904928 commit 82baee9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
.DEFAULT_GOAL := help

## lint
## Run all linters
lint: golangci-lint

## golangci-lint
## Run golangci-lint
golangci-lint:
go run github.com/golangci/golangci-lint/cmd/[email protected] run --config .golangci.yml

## go test
## Run go test
go-test:
CGO_ENABLED=0 go test -v -covermode=atomic ./...

## test
## Run all tests and linters
test: go-test lint

# https://gist.github.com/prwhite/8168133
Expand Down

0 comments on commit 82baee9

Please sign in to comment.