8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf71918 commit b93b974Copy full SHA for b93b974
scripts/travis.sh
@@ -0,0 +1,16 @@
1
+#!/bin/bash
2
+
3
+# Decrypt secrets if not on an external PR.
4
+if [[ $TRAVIS_SECURE_ENV_VARS == "true" ]]; then
5
+ openssl aes-256-cbc -k "$secrets_password" -in secrets.tar.enc -out secrets.tar -d;
6
+ tar xvf secrets.tar;
7
+fi
8
9
10
+ source ${TRAVIS_BUILD_DIR}/testing/resources/test-env.sh;
11
+ nox --stop-on-first-error -s lint travis;
12
+else
13
+ # only run lint on external PRs
14
+ echo 'External PR: only running lint.'
15
+ nox --stop-on-first-error -s lint;
16
0 commit comments