From 8572db65ff7829b865c4a11d0b02fa2cd6840106 Mon Sep 17 00:00:00 2001 From: Kristjan Eimre Date: Fri, 26 Jul 2024 16:50:55 +0300 Subject: [PATCH] use coveralls parallel version --- .github/workflows/build.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ea1db7a..35baaba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -58,8 +58,18 @@ jobs: run: | py.test --cov aiida_gaussian --cov-append . - - name: Upload coverage report - env: - COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} - run: | - coveralls --service=github-actions + - name: Send coverage to Coveralls (parallel) + uses: coverallsapp/github-action@v2 + with: + parallel: true + flag-name: run ${{ join(matrix.*, ' - ') }} + + coveralls-finish: + needs: tests + if: ${{ always() }} + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true