1
0
mirror of https://github.com/go-task/task.git synced 2025-01-12 04:34:11 +02:00
task/Taskfile.yml

21 lines
322 B
YAML
Raw Normal View History

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