From 83da362dc646c5cc6d677f1498efb419e2135de4 Mon Sep 17 00:00:00 2001 From: svartalf Date: Fri, 1 May 2020 14:18:12 +0300 Subject: [PATCH] Mark grcov execution as parallel runs --- .github/workflows/coverage.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 8b3a755..f4ccc51 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -50,17 +50,19 @@ jobs: id: coverage uses: actions-rs/grcov@v0.1 - name: Coveralls upload - uses: coverallsapp/github-action@v1.1.0 + uses: coverallsapp/github-action@v1.1.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: ${{ steps.coverage.outputs.report }} + flag-name: test-${{ matrix.os }} + parallel: true grcov_finalize: runs-on: ubuntu-latest needs: grcov steps: - name: Finalize Coveralls upload - uses: coverallsapp/github-action@v1.1.0 + uses: coverallsapp/github-action@v1.1.1 with: github-token: ${{ secrets.GITHUB_TOKEN }} parallel-finished: true \ No newline at end of file