1
0
mirror of https://github.com/go-task/task.git synced 2025-02-03 13:22:11 +02:00
task/Taskfile.yml

21 lines
322 B
YAML
Raw Normal View History

2017-03-02 21:06:52 -03:00
# compiles current source code and make "task" executable available on
# $GOPATH/bin/task{.exe}
2017-02-28 18:50:29 -03:00
install:
cmds:
- go install -v ./...
2017-03-02 21:06:52 -03:00
lint:
cmds:
- golint .
- golint ./cmd/task
2017-02-28 18:50:29 -03:00
# TODO: have tests
test:
cmds:
- go test -v
# https://github.com/goreleaser/goreleaser
release:
cmds:
- goreleaser