diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index a34175e3..6941b5c1 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -59,6 +59,11 @@ jobs: - name: Run PHPUnit run: vendor/bin/phpunit -c phpunit.xml --verbose + - name: Upload Coveralls coverage + uses: coverallsapp/github-action@v2 + with: + parallel: true + - name: Upload Coveralls coverage if: github.repository == 'Austinb/GameQ' env: @@ -72,3 +77,13 @@ jobs: if: github.repository == 'Austinb/GameQ' with: cli-args: "--format=php-clover build/logs/clover.xml --revision=${{ github.event.pull_request.head.sha || github.sha }}" + + Finish: + needs: CI + if: ${{ always() }} + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true \ No newline at end of file