mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
23 lines
No EOL
462 B
YAML
23 lines
No EOL
462 B
YAML
language: go
|
|
go:
|
|
- "1.12"
|
|
|
|
# safelist
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
# Skip the install step. Don't `go get` dependencies. Only build with the code
|
|
# in vendor/
|
|
install: true
|
|
|
|
script:
|
|
- make build || travis_terminate 1;
|
|
- make test-all || travis_terminate 1;
|
|
|
|
after_script:
|
|
- curl -d "repo=https://github.com/nirmata/kyverno" https://goreportcard.com/checks
|
|
|
|
after_success:
|
|
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
|
|
- make docker-publish |