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 87cc78d commit 107a879Copy full SHA for 107a879
.travis.yml
@@ -32,6 +32,7 @@ matrix:
32
env: WP_VERSION=latest WP_MULTISITE=1
33
- php: 7.3
34
env: NPM_TESTS=1
35
+ env: PHPCS=1
36
exclude:
37
38
env: WP_VERSION=4.5
@@ -87,12 +88,12 @@ before_script:
87
88
fi
89
script:
90
- |
91
+ if [[ "$PHPCS" == "1" ]]; then
92
+ composer phpcs
93
+ fi
94
+
95
if [[ "$NPM_TESTS" == "1" ]]; then
96
npm test
97
else
- if [[ "$TRAVIS_PHP_VERSION" != "5.2" ]]; then
- composer phpcs
- fi
-
98
phpunit
99
0 commit comments