You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then npm install -g snyk; fi
script:
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then if [ "$TRAVIS_BRANCH" = "master" ]; then cmd=monitor; else cmd=test; fi; snyk "$cmd"; fi
- make lint
- make test TAGS=integration
# Ensure protobuf generation is current.
- make generate && git diff --exit-code ./config
- make build
- docker build --tag "$IMAGE_NAME" .
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then if [ "$TRAVIS_BRANCH" = "master" ]; then cmd=monitor; else cmd=test; fi; snyk "$cmd" --docker "$IMAGE_NAME" --file=Dockerfile; fi