This commit is contained in:
JP White 2021-02-27 23:08:48 -05:00
parent e7259120f0
commit 903a5f5d76

View File

@ -10,7 +10,7 @@ on:
branches: [ master ] branches: [ master ]
jobs: jobs:
build: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
@ -33,17 +33,18 @@ jobs:
- name: Test with pytest - name: Test with pytest
run: | run: |
make test-coverage make test-coverage
- name: Report coverage to Coveralls - name: Coveralls
uses: AndreMiras/coveralls-python-action@develop uses: coverallsapp/github-action@master
with: with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true parallel: true
flag-name: Unit Test
coveralls_finish: coveralls_finish:
needs: test needs: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Coveralls Finished - name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop uses: coverallsapp/github-action@master
with: with:
github-token: ${{ secrets.github_token }}
parallel-finished: true parallel-finished: true