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

20 lines
312 B
YAML
Raw Permalink 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"
- "1.13.x"
2016-08-05 08:59:01 -07:00
- tip
2017-12-13 16:38:15 +10:00
install:
- go get -u golang.org/x/crypto/ssh
- go get -u github.com/lib/pq
2017-12-13 16:38:15 +10:00
- 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)