From 917b2efb47d1619943f7d338fc6bb31d65b1d3f2 Mon Sep 17 00:00:00 2001 From: harryswift01 Date: Tue, 20 Jan 2026 10:49:56 +0000 Subject: [PATCH 1/2] add `parallel-finished` option to the `project-ci.yaml` --- .github/workflows/project-ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/project-ci.yaml b/.github/workflows/project-ci.yaml index fbe78c6..98b5049 100644 --- a/.github/workflows/project-ci.yaml +++ b/.github/workflows/project-ci.yaml @@ -36,6 +36,16 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} + finish: + needs: tests + if: ${{ always() }} + runs-on: ubuntu-24.04 + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2.3.7 + with: + parallel-finished: true + docs: runs-on: ubuntu-latest timeout-minutes: 15 From ae21786b0b42207d526b8c2bc69c39274a7ed957 Mon Sep 17 00:00:00 2001 From: Harry Swift Date: Tue, 20 Jan 2026 16:54:51 +0000 Subject: [PATCH 2/2] Update CI workflow by modifying Coveralls action --- .github/workflows/project-ci.yaml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/project-ci.yaml b/.github/workflows/project-ci.yaml index 98b5049..01d7f94 100644 --- a/.github/workflows/project-ci.yaml +++ b/.github/workflows/project-ci.yaml @@ -35,16 +35,7 @@ jobs: uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # v2.3.7 with: github-token: ${{ secrets.GITHUB_TOKEN }} - - finish: - needs: tests - if: ${{ always() }} - runs-on: ubuntu-24.04 - steps: - - name: Coveralls Finished - uses: coverallsapp/github-action@v2.3.7 - with: - parallel-finished: true + parallel: true docs: runs-on: ubuntu-latest @@ -78,4 +69,4 @@ jobs: - name: Run pre-commit run: | pre-commit install - pre-commit run --all-files || ( git status --short ; git diff ; exit 1 ) \ No newline at end of file + pre-commit run --all-files || ( git status --short ; git diff ; exit 1 )