use coveralls action

This commit is contained in:
sneakers-the-rat 2024-08-06 01:46:20 -07:00
parent c2e663eca0
commit fbb06dac52
Signed by untrusted user who does not match committer: jonny
GPG key ID: 6DCB96EF1E4D232D

View file

@ -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