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
2023-08-03 13:47:27 +02:00

21 lines
No EOL
389 B
YAML

language: go
go:
- "1.19"
- "1.20"
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