1
0
mirror of https://github.com/securego/gosec.git synced 2024-12-30 21:19:46 +02:00
gosec/.travis.yml

23 lines
442 B
YAML
Raw Normal View History

2016-08-05 17:59:01 +02:00
language: go
2016-08-05 17:59:01 +02:00
go:
- "1.11.x"
- "1.12.x"
2016-08-05 17:59:01 +02:00
- tip
2017-12-13 08:38:15 +02:00
install:
2018-11-05 10:13:26 +02:00
- go get -u golang.org/x/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/lib/pq
2017-12-13 08:38:15 +02:00
- go get -v -t ./...
- export PATH=$PATH:$HOME/gopath/bin
- export GO111MODULE=on
2017-12-13 08:38:15 +02:00
script: make test
2017-12-13 08:38:15 +02:00
after_success:
- make test-coverage
- bash <(curl -s https://codecov.io/bash)