From c3f06ab79325d5de23f3a2540d3451591d5395a2 Mon Sep 17 00:00:00 2001 From: Michael Schlottke-Lakemper Date: Wed, 3 Mar 2021 19:56:15 +0100 Subject: [PATCH] Re-enable finisher for Coveralls --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edea1fa..4b3523a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: - uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - flag-name: run-${{ matrix.version }}-${{ matrix.os }}-${{ matrix.arch }} + flag-name: run-${{ matrix.os }}-${{ matrix.version }}-${{ matrix.arch }} parallel: true path-to-lcov: ./lcov.info - uses: codecov/codecov-action@v1 @@ -73,12 +73,12 @@ jobs: fail_ci_if_error: true # optional (default = false) # verbose: true # optional (default = false) - # finish: - # needs: test - # runs-on: ubuntu-latest - # steps: - # - name: Coveralls Finished - # uses: coverallsapp/github-action@master - # with: - # github-token: ${{ secrets.GITHUB_TOKEN }} - # parallel-finished: true + finish: + needs: test + runs-on: ubuntu-latest + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@master + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true