Enchantrix/Taskfile.yml

13 lines
297 B
YAML
Raw Normal View History

version: '3'
tasks:
test:
desc: "Run all tests"
cmds:
- go test -v -coverpkg=github.com/Snider/Enchantrix/pkg/crypt,github.com/Snider/Enchantrix/pkg/enchantrix,github.com/Snider/Enchantrix/pkg/trix ./...
build:
desc: "Build the project"
cmds:
- go build -v ./...