File tree Expand file tree Collapse file tree 2 files changed +16
-11
lines changed
Expand file tree Collapse file tree 2 files changed +16
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66 schedule :
77 - cron : ' 0 3 * * *'
88
9- env :
10- COVERALLS_SERVICE_NUMBER : ${{ github.run_id }}-${{ github.run_attempt }}
11-
129jobs :
1310 tests :
1411 runs-on : ubuntu-latest
@@ -39,12 +36,22 @@ jobs:
3936 - name : Run tests
4037 run : vendor/bin/phpunit --coverage-clover coverage-clover.xml
4138
42- - name : Submit coverage to Coveralls
43- env :
44- COVERALLS_REPO_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45- run : |
46- composer global require --no-progress --dev php-coveralls/php-coveralls guzzlehttp/guzzle:^6.5
47- ~/.composer/vendor/bin/php-coveralls -v
39+ - name : Coveralls Parallel
40+ uses : coverallsapp/github-action@v2
41+ with :
42+ flag-name : ${{ github.job }}-PHP-${{ matrix.php-version }} ${{ matrix.dependencies }}
43+ file : coverage-clover.xml
44+ parallel : true
45+
46+ tests-finished :
47+ needs : tests
48+ if : ${{ always() }}
49+ runs-on : ubuntu-latest
50+ steps :
51+ - name : Coveralls Finished
52+ uses : coverallsapp/github-action@v2
53+ with :
54+ parallel-finished : true
4855
4956 codestyle :
5057 name : " Code style and static analysis"
You can’t perform that action at this time.
0 commit comments