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 76421ab commit 015fa1bCopy full SHA for 015fa1b
.github/workflows/ci.yml
@@ -76,9 +76,21 @@ jobs:
76
uses: nick-invision/retry@v2
77
env:
78
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
79
+ COVERALLS_PARALLEL: 'true'
80
+ COVERALLS_FLAG_NAME: 'laravel:${{ matrix.lib.laravel }}'
81
with:
82
timeout_minutes: 1
83
max_attempts: 3
84
command: |
85
composer global require php-coveralls/php-coveralls
86
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