1
0
mirror of https://github.com/securego/gosec.git synced 2025-02-05 13:04:47 +02:00
gosec/.travis.yml

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