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 17fdc1e commit f5f5f68Copy full SHA for f5f5f68
1 file changed
.github/workflows/qa.yml
@@ -42,5 +42,7 @@ jobs:
42
env: ${{ matrix.env }}
43
if: ${{ env.COVERAGE_FILE }}
44
run: |
45
- curl -sSOL https://scrutinizer-ci.com/ocular.phar
46
- docker run --rm -v $PWD:/msgpack -w /msgpack msgpack php ocular.phar code-coverage:upload --format=php-clover "$COVERAGE_FILE"
+ docker run --rm -v $PWD:/msgpack -w /msgpack msgpack sh -lc '
+ composer global require --no-progress --no-interaction scrutinizer/ocular:^1.9 >/dev/null &&
47
+ "$(composer global config bin-dir --absolute)/ocular" code-coverage:upload --format=php-clover "$COVERAGE_FILE"
48
+ '
0 commit comments