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 f58f144 commit b7cb820Copy full SHA for b7cb820
.travis.yml
@@ -10,12 +10,15 @@ matrix:
10
allow_failures:
11
- php: hhvm
12
13
-script: vendor/bin/tester tests -s -c tests/php-unix.ini
+script:
14
+ - vendor/bin/tester tests -s -c tests/php-unix.ini
15
+ - php code-checker/src/code-checker.php -d src
16
17
after_failure:
18
# Print *.actual content
19
- for i in $(find tests -name \*.actual); do echo "--- $i"; cat $i; echo; echo; done
20
21
before_script:
- # Install Nette Tester
22
+ # Install Nette Tester & Code Checker
23
- composer install --no-interaction --dev --prefer-source
24
+ - composer create-project nette/code-checker code-checker ~2.2 --no-interaction --prefer-source
0 commit comments