1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-12-18 20:58:10 +00:00

Merge branch 'master' into bugfix/docker-entrypoint-fail-on-error

This commit is contained in:
Liz Rice 2018-05-11 19:58:35 +01:00 committed by GitHub
commit b649cef047
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,11 @@
---
language: go
sudo: required
services:
- docker
notifications:
email: false
@ -16,6 +21,10 @@ install:
script:
- go test ./...
- docker build --tag kube-bench .
- docker run -v `pwd`:/host kube-bench install
- test -d cfg
- test -f kube-bench
after_success:
- test -n "$TRAVIS_TAG" && curl -sL https://git.io/goreleaser | bash