Skip to content

Commit 015fa1b

Browse files
authored
Coveralls Parallel
1 parent 76421ab commit 015fa1b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,21 @@ jobs:
7676
uses: nick-invision/retry@v2
7777
env:
7878
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
79+
COVERALLS_PARALLEL: 'true'
80+
COVERALLS_FLAG_NAME: 'laravel:${{ matrix.lib.laravel }}'
7981
with:
8082
timeout_minutes: 1
8183
max_attempts: 3
8284
command: |
8385
composer global require php-coveralls/php-coveralls
8486
php-coveralls --coverage_clover=build/logs/clover.xml -v
87+
88+
coverage-aggregation:
89+
needs: build
90+
runs-on: ubuntu-latest
91+
steps:
92+
- name: Aggregate Coverage
93+
uses: coverallsapp/github-action@master
94+
with:
95+
github-token: ${{ secrets.GITHUB_TOKEN }}
96+
parallel-finished: true

0 commit comments

Comments
 (0)