mirror of
https://github.com/aykhans/dodo.git
synced 2025-09-01 00:53:34 +00:00
21 lines
294 B
YAML
21 lines
294 B
YAML
# https://taskfile.dev
|
|
|
|
version: "3"
|
|
|
|
tasks:
|
|
run: go run cmd/cli/main.go {{.CLI_ARGS}}
|
|
|
|
ftl:
|
|
cmds:
|
|
- task: fmt
|
|
- task: tidy
|
|
- task: lint
|
|
|
|
fmt: golangci-lint fmt
|
|
|
|
tidy: go mod tidy
|
|
|
|
lint: golangci-lint run
|
|
|
|
test: go test ./...
|