mirror of
https://github.com/securego/gosec.git
synced 2024-11-06 03:55:50 +00:00
e442cf30a8
Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch>
19 lines
312 B
YAML
19 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)
|