mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
29cec138dc
* Fix formating in README Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch> * Split the various test goals in the Makefile Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch> * Remove the prerequisites from README since they are automatically installed Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch> * Remove unnecessary install steps from Travis CI build Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch> * Make sure golint is installed before running the lint command Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch> * Make sure ginkgo command is installed before running the tests Signed-off-by: Cosmin Cojocar <cosmin.cojocar@gmx.ch>
18 lines
299 B
YAML
18 lines
299 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.11.x"
|
|
- "1.12.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)
|