From 3f238dbd63882062480ba54b5c9fc33cd221c33a Mon Sep 17 00:00:00 2001 From: Sergey Vasilyev Date: Thu, 19 Nov 2020 01:08:24 +0100 Subject: [PATCH] Finish parallel coveralls properly --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c7df0c7d..b2d3ca9a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -170,7 +170,7 @@ jobs: needs: [unit-tests, functional] runs-on: ubuntu-20.04 steps: - - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.github_token }} - parallel-finished: true + - run: pip install coveralls + - run: coveralls --finish + env: + GITHUB_TOKEN: ${{ secrets.github_token }}