diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffcd94b88..79fa4d41d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -83,6 +83,8 @@ jobs: uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true + flag-names: test-modeling test-inference: @@ -134,6 +136,8 @@ jobs: uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true + flag-name: test-inference examples: @@ -166,3 +170,19 @@ jobs: uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true + flag-name: examples + + + finish: + + needs: [test-modeling, test-inference, examples] + runs-on: ubuntu-latest + steps: + - name: Coveralls finished + uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true + carryforward: "test-modeling,test-inference,examples" +