Enchantrix/Taskfile.yml

13 lines
224 B
YAML
Raw Normal View History

version: '3'
tasks:
test:
desc: "Run all tests and generate a coverage report"
cmds:
- go test -v -coverprofile=coverage.out ./...
build:
desc: "Build the project"
cmds:
- go build -v ./...