Skip to content

Commit 068bb4b

Browse files
authored
Fix Coveralls?
1 parent 2069135 commit 068bb4b

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,20 @@ jobs:
5050
GROUP: ${{ matrix.group }}
5151
- uses: julia-actions/julia-processcoverage@v1
5252
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
53-
- name: Send coverage
53+
- name: Coveralls parallel
5454
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
5555
uses: coverallsapp/github-action@master
5656
with:
57-
github-token: ${{ secrets.GITHUB_TOKEN }}
58-
path-to-lcov: ./lcov.info
57+
github-token: ${{ secrets.GITHUB_TOKEN }}
58+
path-to-lcov: ./lcov.info
59+
flag-name: run-${{ matrix.group }}
60+
parallel: true
61+
finish:
62+
needs: test
63+
runs-on: ubuntu-latest
64+
steps:
65+
- name: Send coverage
66+
uses: coverallsapp/github-action@master
67+
with:
68+
github-token: ${{ secrets.github_token }}
69+
parallel-finished: true

0 commit comments

Comments
 (0)