From 9d823764481980d196279ac0f95f1ce00b3cc784 Mon Sep 17 00:00:00 2001 From: Patrick Henninger Date: Fri, 29 Nov 2024 22:44:17 +0100 Subject: [PATCH] [Change] Use Coveralis action and enable parallel support --- .github/workflows/Tests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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