mirror of
https://github.com/zoriya/bubbles.git
synced 2026-08-04 20:26:08 +00:00
15 lines
183 B
YAML
15 lines
183 B
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
tasks:
|
|
lint:
|
|
desc: Run lint
|
|
cmds:
|
|
- golangci-lint run
|
|
|
|
test:
|
|
desc: Run tests
|
|
cmds:
|
|
- go test ./... {{.CLI_ARGS}}
|