mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 03:55:50 +00:00
d452dcb20d
The tests are running extremely slow at the moment, and these extra options add to the problem.
14 lines
267 B
YAML
14 lines
267 B
YAML
language: go
|
|
before_script:
|
|
- go vet $(go list ./... | grep -v /vendor/)
|
|
go:
|
|
- 1.5
|
|
- tip
|
|
install:
|
|
- go get -v github.com/onsi/ginkgo/ginkgo
|
|
- go get -v github.com/onsi/gomega
|
|
- go get -v -t ./...
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
|
|
script: ginkgo -r
|
|
|