Skip to content

Commit

Permalink
Add descriptions to task targets
Browse files Browse the repository at this point in the history
This adds relevant description so doing `task -l` will list all targets and what they do.
  • Loading branch information
JAORMX committed Dec 15, 2023
1 parent 26083e5 commit 9ac977c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ version: '3'

tasks:
test:
desc: Run tests
cmds:
- go test -v ./...

build:
desc: Build the frizbee binary
cmds:
- go build -o ./bin/ ./...

lint:
desc: Run linter
cmds:
- golangci-lint run --timeout 5m0s --config .golangci.yml

0 comments on commit 9ac977c

Please sign in to comment.