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

24 lines
No EOL
422 B
YAML

language: go
git:
depth: false
go:
- "1.20.8"
go_import_path: github.com/arangodb/kube-arangodb
env:
- GO111MODULES=off
script:
- |
set -e
if [ "$TRAVIS_PULL_REQUEST" != "false" ] || [ ! -z "$ALWAYS" ]; then
make init
make license-verify license-range-verify fmt-verify linter vulncheck
make run-unit-tests
make bin
else
make vendor tools-min fmt-verify linter
fi