1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-15 17:51:03 +00:00
kube-arangodb/.travis.yml
2023-02-20 07:09:13 +01:00

20 lines
No EOL
378 B
YAML

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