From 2d6e7e9ab5afa72749b04156db5ab7a9b63625ac Mon Sep 17 00:00:00 2001 From: Natalia Smirnova <> Date: Tue, 20 Feb 2024 19:03:53 -0500 Subject: [PATCH] Try parallel jobs --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d457312..8f400441 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,16 @@ jobs: github-token: ${{ secrets.COVERALLS_TOKEN }} path-to-lcov: ./coverage/lcov.info debug: true + flag-name: run-${{ join(matrix.*, '-') }} + parallel: true + + finish: + needs: build + if: ${{ always() }} + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true + carryforward: "run-18,run-20" \ No newline at end of file