1
0
mirror of https://github.com/securego/gosec.git synced 2025-01-18 02:58:22 +02:00
gosec/.travis.yml

20 lines
398 B
YAML
Raw Normal View History

2016-08-05 08:59:01 -07:00
language: go
2016-08-05 08:59:01 -07:00
go:
- 1.9
- "1.10"
2016-08-05 08:59:01 -07:00
- tip
2017-12-13 16:38:15 +10:00
install:
- go get -u github.com/golang/dep/cmd/dep
- go get -u github.com/golang/lint/golint
- go get -u github.com/onsi/ginkgo/ginkgo
- go get -u github.com/onsi/gomega
- go get -u golang.org/x/crypto/ssh
- go get -u github.com/securego/gosec/cmd/gosec/...
2017-12-13 16:38:15 +10:00
- go get -v -t ./...
- export PATH=$PATH:$HOME/gopath/bin
script: make test
2017-12-13 16:38:15 +10:00