Skip to content

Commit 0e4c14b

Browse files
committed
update workflow: tests
1 parent 8ae4369 commit 0e4c14b

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
id: pip-cache
4545
run: echo "::set-output name=dir::$(pip cache dir)"
4646

47-
- name: cache pip
47+
- name: cache pip dependencies
4848
uses: actions/cache@v2
4949
with:
5050
path: ${{ steps.pip-cache.outputs.dir }}
@@ -53,25 +53,23 @@ jobs:
5353
- run: pip install tox
5454
- run: tox -e ${{ matrix.tox }}
5555

56-
coveralls:
56+
coveralls_finish:
5757
# check coverage increase/decrease
5858
needs: tests
59-
runs-on: "ubuntu-latest"
59+
runs-on: ubuntu-latest
6060
steps:
6161
- name: Coveralls Finished
6262
uses: AndreMiras/coveralls-python-action@develop
63-
with:
64-
parallel-finished: true
6563

6664
deploy:
6765
# builds and publishes to PyPi
68-
runs-on: "ubuntu-latest"
66+
runs-on: ubuntu-latest
6967
steps:
7068
- uses: actions/checkout@v2
7169
- name: Set up Python
7270
uses: actions/setup-python@v2
7371
with:
74-
python-version: "3.7"
72+
python-version: '3.7'
7573
- name: Install dependencies
7674
run: |
7775
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)