Skip to content

Commit 7038a5d

Browse files
committed
fix: only upload coverage report on latest php version
1 parent 9d78c0a commit 7038a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ script:
1111
- if [[ "${TRAVIS_PHP_VERSION:0:3}" != "7.2" ]]; then composer test:standard; fi
1212
- if [[ "${TRAVIS_PHP_VERSION:0:3}" == "7.2" ]]; then composer test:all -- --coverage-clover clover.xml; fi
1313
after_success:
14-
- travis_retry php vendor/bin/php-coveralls -v --coverage_clover clover.xml --json_path coveralls-upload.json
14+
- if [[ "${TRAVIS_PHP_VERSION:0:3}" == "7.2" ]]; then travis_retry php vendor/bin/php-coveralls -v --coverage_clover clover.xml --json_path coveralls-upload.json; fi

0 commit comments

Comments
 (0)