1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/.travis.yml

20 lines
378 B
YAML
Raw Normal View History

2020-04-01 09:23:24 +00:00
language: go
go:
2022-12-22 09:49:51 +00:00
- "1.19"
2020-04-01 09:23:24 +00:00
go_import_path: github.com/arangodb/kube-arangodb
env:
- GO111MODULES=off
script:
- |
if [ "$TRAVIS_PULL_REQUEST" != "false" ] || [ ! -z "$ALWAYS" ]; then
make init
make license-verify license-range-verify fmt-verify linter
make run-unit-tests
make bin
else
make vendor tools-min fmt-verify linter
fi