Skip to content

Commit

Permalink
Add basic taskfile config
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisdenny authored and evallesp committed Dec 11, 2024
1 parent a7792d6 commit aa1dfb9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# https://taskfile.dev/
version: '3'

tasks:
default:
cmds:
- task: list

lint:
desc: Run golangci-lint
cmd: golangci-lint run

run:
desc: Run main binary, pass args like `task run -- $ARGS`
cmd: go run main.go {{.CLI_ARGS}}

list:
desc: List available tasks
internal: true
cmds:
- task --list

0 comments on commit aa1dfb9

Please sign in to comment.