diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 12ab684..c14e806 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,8 +37,20 @@ jobs: run: pytest working-directory: nwb_linkml - - name: Report coverage - working-directory: nwb_linkml - run: "coveralls --service=github" - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Coveralls Parallel + uses: coverallsapp/github-action@v2.3.0 + if: runner.os != 'macOS' + with: + 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 \ No newline at end of file