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 5aaf23b commit 884f623Copy full SHA for 884f623
.travis.yml
@@ -28,7 +28,7 @@ php:
28
matrix:
29
include:
30
- php: 5.6
31
- env: RUN_DEVSERVER_TESTS=true RUN_CS_FIXER=true
+ env: RUN_DEVSERVER_TESTS=true RUN_CS_FIXER=true RUN_DEPENDENCY_CHECK=true
32
- php: 7.2
33
env: SKIP_GRPC=true
34
testing/run_all_tests.sh
@@ -45,6 +45,8 @@ if [ "${RUN_CS_FIXER}" = "true" ]; then
45
fi
46
$DIR/run_test_suite.sh;
47
# only run for travis crons
48
-if [ "${TRAVIS_EVENT_TYPE}" != "pull_request" ]; then
+if [ "${TRAVIS_EVENT_TYPE}" != "pull_request" ] && \
49
+ [ "${RUN_DEPENDENCY_CHECK}" = "true" ]
50
+then
51
$DIR/run_dependency_check.sh;
52
0 commit comments