1
0
mirror of https://github.com/securego/gosec.git synced 2025-01-03 22:52:22 +02:00
gosec/.travis.yml
Cosmin Cojocar e442cf30a8 Add Go 1.13 to the tested version in the travis build file (#350)
Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch>
2019-09-09 21:10:58 +10:00

20 lines
312 B
YAML

language: go
go:
- "1.11.x"
- "1.12.x"
- "1.13.x"
- tip
install:
- go get -u golang.org/x/crypto/ssh
- go get -u github.com/lib/pq
- export PATH=$PATH:$HOME/gopath/bin
- export GO111MODULE=on
script: make test
after_success:
- make test-coverage
- bash <(curl -s https://codecov.io/bash)