File tree Expand file tree Collapse file tree 1 file changed +15
-9
lines changed Expand file tree Collapse file tree 1 file changed +15
-9
lines changed Original file line number Diff line number Diff line change 6
6
schedule :
7
7
- cron : ' 0 3 * * *'
8
8
9
- env :
10
- COVERALLS_SERVICE_NUMBER : ${{ github.run_id }}-${{ github.run_attempt }}
11
-
12
9
jobs :
13
10
tests :
14
11
runs-on : ubuntu-latest
@@ -39,12 +36,21 @@ jobs:
39
36
- name : Run tests
40
37
run : vendor/bin/phpunit --coverage-clover coverage-clover.xml
41
38
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 : run-${{ join(matrix.*, '-') }}
43
+ parallel : true
44
+
45
+ tests-finished :
46
+ needs : tests
47
+ if : ${{ always() }}
48
+ runs-on : ubuntu-latest
49
+ steps :
50
+ - name : Coveralls Finished
51
+ uses : coverallsapp/github-action@v2
52
+ with :
53
+ parallel-finished : true
48
54
49
55
codestyle :
50
56
name : " Code style and static analysis"
You can’t perform that action at this time.
0 commit comments