Skip to content

Commit

Permalink
Move to official action
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbrittain committed Sep 16, 2023
1 parent fb8e139 commit 0585cd9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Expand Up @@ -24,10 +24,10 @@ jobs:
run: |
coverage run --source=asciimatics -m unittest
- name: Upload to coveralls
uses: AndreMiras/coveralls-python-action@develop
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true
flag-name: Unit Test

testwindows:
runs-on: windows-latest
Expand All @@ -50,16 +50,16 @@ jobs:
run: |
coverage run --source=asciimatics -m unittest
- name: Upload to coveralls
uses: AndreMiras/coveralls-python-action@develop
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true
flag-name: Unit Test

coveralls_finish:
needs: [ test, testwindows ]
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: AndreMiras/coveralls-python-action@develop
uses: coverallsapp/github-action@v2
with:
parallel-finished: true

0 comments on commit 0585cd9

Please sign in to comment.