Skip to content

Commit 61a046c

Browse files
committed
ci: fix ci run error on parse cover xml
1 parent 2fdd9a7 commit 61a046c

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/php.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [8.2, 8.1, ] #
19+
php: [8.2, 8.1, 8.3, 8.4] #
2020

2121
steps:
2222
- name: Checkout
@@ -40,20 +40,20 @@ jobs:
4040
run: |
4141
phpunit --coverage-clover ./test/clover.xml
4242
43-
- name: Coveralls Parallel
44-
uses: coverallsapp/github-action@master
45-
with:
46-
github-token: ${{ secrets.github_token }}
47-
flag-name: run-${{ matrix.php }}
48-
path-to-lcov: ./test/clover.xml
49-
parallel: true
50-
51-
finish:
52-
needs: test
53-
runs-on: ubuntu-latest
54-
steps:
55-
- name: Coveralls Finished
56-
uses: coverallsapp/github-action@master
57-
with:
58-
github-token: ${{ secrets.github_token }}
59-
parallel-finished: true
43+
# - name: Coveralls Parallel
44+
# uses: coverallsapp/github-action@master
45+
# with:
46+
# github-token: ${{ secrets.github_token }}
47+
# flag-name: run-${{ matrix.php }}
48+
# path-to-lcov: ./test/clover.xml
49+
# parallel: true
50+
51+
# finish:
52+
# needs: test
53+
# runs-on: ubuntu-latest
54+
# steps:
55+
# - name: Coveralls Finished
56+
# uses: coverallsapp/github-action@master
57+
# with:
58+
# github-token: ${{ secrets.github_token }}
59+
# parallel-finished: true

0 commit comments

Comments
 (0)