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 0f64504 commit 7c09e09Copy full SHA for 7c09e09
.github/workflows/main.yml
@@ -23,10 +23,11 @@ jobs:
23
composer update --no-progress --prefer-dist
24
- name: "Tests"
25
run: "php vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
26
- # This is erroring, not sure why.
27
- # - name: Coveralls
28
- # run: "php vendor/bin/php-coveralls"
29
- # if: ${{ success() }}
+ - name: Coveralls
+ env:
+ COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: "php vendor/bin/php-coveralls"
30
+ if: ${{ success() }}
31
tests:
32
runs-on: "ubuntu-latest"
33
name: "PHP ${{ matrix.php-version }} Unit Tests"
0 commit comments