diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index efdd5de..cb289ce 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -89,5 +89,15 @@ jobs: path-to-lcov: .coverage/integration/lcov.info flag-name: Integration parallel: true - parallel-finished: true - github-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + github-token: ${{ secrets.GITHUB_TOKEN }} + finish: + name: Finish + needs: [test-units-and-cover, test-integrations-and-cover] + runs-on: ubuntu-latest + if: ${{ always() }} + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true \ No newline at end of file