Skip to content

Commit

Permalink
Using a more recent action
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrey-hokanson committed Nov 22, 2020
1 parent 47babf9 commit 56bb27d
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,34 @@ jobs:
run: |
pytest --cov=polyrat --cov-branch tests/
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.python-version }}
parallel: true

finish:
# - name: Coveralls Parallel
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.github_token }}
# flag-name: run-${{ matrix.python-version }}
# parallel: 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


coveralls_finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true

0 comments on commit 56bb27d

Please sign in to comment.