mirror of
https://github.com/moul/sshportal.git
synced 2025-09-21 12:05:50 +08:00
16 lines
279 B
YAML
16 lines
279 B
YAML
# https://github.com/go-task/task
|
|
|
|
dl-deps:
|
|
desc: Downloads cli dependencies
|
|
cmds:
|
|
- go get -u github.com/golang/lint/golint
|
|
|
|
lint:
|
|
desc: Runs golint on this project
|
|
cmds:
|
|
- golint .
|
|
|
|
test:
|
|
desc: Runs automated tests for this project
|
|
cmds:
|
|
- go test -v .
|