Skip to content

Commit

Permalink
[Change] Use Coveralis action and enable parallel support
Browse files Browse the repository at this point in the history
  • Loading branch information
bumbummen99 committed Nov 29, 2024
1 parent e6523ed commit 9d82376
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit 9d82376

Please sign in to comment.