mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
806908a805
Use the just built gosec to scan the source code. Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch>
22 lines
442 B
YAML
22 lines
442 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.11.x"
|
|
- "1.12.x"
|
|
- tip
|
|
|
|
install:
|
|
- 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
|
|
- go get -v -t ./...
|
|
- export PATH=$PATH:$HOME/gopath/bin
|
|
- export GO111MODULE=on
|
|
|
|
script: make test
|
|
|
|
after_success:
|
|
- make test-coverage
|
|
- bash <(curl -s https://codecov.io/bash)
|