diff --git a/.github/workflows/ci-workflows.yaml b/.github/workflows/ci-workflows.yaml index 3e800ac..5061d84 100644 --- a/.github/workflows/ci-workflows.yaml +++ b/.github/workflows/ci-workflows.yaml @@ -31,4 +31,18 @@ jobs: pip install pytest-cov pytest tests/ --doctest-modules --junitxml=junit/test-results.xml --cov=suspect --cov-report lcov:cov.info - name: Coveralls - uses: coverallsapp/github-action@v2 \ No newline at end of file + uses: coverallsapp/github-action@v2 + with: + flag-name: run-${{ join(matrix.*, '-') }} + parallel: true + + finish: + needs: test + if: ${{ always() }} + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true + carryforward: "run-1,run-2" \ No newline at end of file