Fix Coveralls for parallel builds
parent
d908f1f713
commit
3cdc9016a8
|
|
@ -10,7 +10,7 @@ on:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
test:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
|
|
@ -44,7 +44,19 @@ jobs:
|
||||||
- name: Test with tox for non Jython only
|
- name: Test with tox for non Jython only
|
||||||
if: ${{ ! matrix.jython }}
|
if: ${{ ! matrix.jython }}
|
||||||
run: tox
|
run: tox
|
||||||
- name: Coveralls
|
- name: Coveralls Parallel
|
||||||
uses: coverallsapp/github-action@master
|
uses: coverallsapp/github-action@master
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.github_token }}
|
||||||
|
flag-name: run-${{ matrix.python-version }}-${{ matrix.plattform }}
|
||||||
|
parallel: true
|
||||||
|
|
||||||
|
finish:
|
||||||
|
needs: test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Coveralls Finished
|
||||||
|
uses: coverallsapp/github-action@master
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.github_token }}
|
||||||
|
parallel-finished: true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue