mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
use coveralls action
This commit is contained in:
parent
c2e663eca0
commit
fbb06dac52
1 changed files with 17 additions and 5 deletions
22
.github/workflows/tests.yml
vendored
22
.github/workflows/tests.yml
vendored
|
@ -37,8 +37,20 @@ jobs:
|
||||||
run: pytest
|
run: pytest
|
||||||
working-directory: nwb_linkml
|
working-directory: nwb_linkml
|
||||||
|
|
||||||
- name: Report coverage
|
- name: Coveralls Parallel
|
||||||
working-directory: nwb_linkml
|
uses: coverallsapp/github-action@v2.3.0
|
||||||
run: "coveralls --service=github"
|
if: runner.os != 'macOS'
|
||||||
env:
|
with:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
flag-name: run-${{ join(matrix.*, '-') }}
|
||||||
|
parallel: true
|
||||||
|
debug: true
|
||||||
|
|
||||||
|
finish-coverage:
|
||||||
|
needs: test
|
||||||
|
if: ${{ always() }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Coveralls Finished
|
||||||
|
uses: coverallsapp/github-action@v2.3.0
|
||||||
|
with:
|
||||||
|
parallel-finished: true
|
Loading…
Reference in a new issue