mirror of
https://github.com/securego/gosec.git
synced 2024-12-27 13:05:51 +00:00
515cb3bdf0
This reverts commit b90689611c
.
20 lines
406 B
YAML
20 lines
406 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.8
|
|
- 1.9
|
|
- "1.10"
|
|
- tip
|
|
|
|
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/GoASTScanner/gas/cmd/gas/...
|
|
- go get -v -t ./...
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
script: make test
|
|
|