-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds a reject method to do the opposite of acknowledge (#43)
* adds a reject method to do the opposite of acknowledge * lint fix * add tests for 7.2 / nightly * some boy scouting * add 7.2 to allowed failures list * change install to build * use dist for travis * fix singluar/plural mixing
- Loading branch information
Harry Bragg
authored
Jan 16, 2018
1 parent
3084e3f
commit d469f2a
Showing
15 changed files
with
314 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,35 @@ | ||
language: php | ||
|
||
sudo: false | ||
dist: trusty | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache/files | ||
|
||
php: | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
- 7.2 | ||
- nightly | ||
- hhvm | ||
|
||
env: | ||
- 'COMPOSER_FLAGS="--prefer-lowest --prefer-stable"' | ||
- 'COMPOSER_FLAGS=""' | ||
|
||
matrix: | ||
allow_failures: | ||
- php: nightly | ||
- php: 7.2 | ||
|
||
install: | ||
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source | ||
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist | ||
|
||
script: | ||
- vendor/bin/phpcs -p --warning-severity=0 src/ tests/ | ||
- vendor/bin/phpunit --coverage-clover=./tests/report/coverage.clover | ||
|
||
after_script: | ||
- ./build/coverage_to_scruitinizer.sh | ||
- test -f ./tests/report/coverage.clover && (wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --format=php-clover ./tests/report/coverage.clover) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.