Files
dodo/Taskfile.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 ./...