mirror of
https://github.com/go-task/task.git
synced 2024-12-12 10:45:49 +02:00
Taskfile: add update-deps task
This commit is contained in:
parent
ad3f439cb5
commit
ba494702ed
8
.gitignore
vendored
8
.gitignore
vendored
@ -15,3 +15,11 @@
|
||||
|
||||
./task
|
||||
dist/
|
||||
|
||||
vendor/**
|
||||
!vendor/**/*.go
|
||||
!vendor/**/LICENSE
|
||||
!vendor/**/COPYING
|
||||
!vendor/**/README
|
||||
!vendor/**/README.md
|
||||
vendor/**/*_test.go
|
||||
|
@ -10,6 +10,12 @@ dl-deps:
|
||||
cmds:
|
||||
- go get -u github.com/golang/lint/golint
|
||||
- go get -u github.com/goreleaser/goreleaser
|
||||
- go get -u github.com/golang/dep/cmd/dep
|
||||
|
||||
update-deps:
|
||||
cmds:
|
||||
- dep ensure
|
||||
- dep prune
|
||||
|
||||
lint:
|
||||
desc: Runs golint
|
||||
|
Loading…
Reference in New Issue
Block a user