gosec/.travis.yml
Cosmin Cojocar 29cec138dc
Fix formatting in README, remove prerequisite and reworked the Makefile tests goals (#313)
* 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>
2019-05-02 09:19:18 +02:00

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)