Skip to content

Commit 5924e4e

Browse files
committed
Update workflow steps
1 parent 13b04a2 commit 5924e4e

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/pythonapp.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ jobs:
1919
- "3.7"
2020
- "3.8"
2121
- pypy3
22-
asyncio-debug:
23-
- 0
24-
- 1
2522
runs-on: ubuntu-latest
2623
steps:
2724
- uses: actions/checkout@v2
@@ -32,21 +29,21 @@ jobs:
3229
- uses: actions/cache@v1
3330
with:
3431
path: ~/.cache/pip
35-
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
32+
key: ${{ runner.os }}-${{ matrix.python-ver }}-pip-${{ hashFiles('**/requirements.txt') }}
3633
restore-keys: |
3734
${{ runner.os }}-pip-
3835
- name: Install apt deps
3936
run: sudo apt-get update && sudo apt-get install -qq -y libenchant-dev libxml2-dev libxslt1-dev
4037
- name: Install dependencies
4138
run: |
42-
pip install -U pip setuptools cython
39+
pip install -U pip setuptools cython wheel
4340
pip install -Ur travis/requirements.txt
4441
- name: Test with pytest
4542
run: pytest
4643
env:
47-
PYTHONASYNCIODEBUG: ${{ matrix.asyncio-debug }}
44+
PYTHONASYNCIODEBUG: 1
4845
PYTHONPATH: .
4946
- uses: codecov/codecov-action@v1
5047
with:
51-
name: build-${{ matrix.python-ver}}-${{ matrix.asyncio-debug }}
48+
name: build-${{ matrix.python-ver }}
5249
fail_ci_if_error: true

0 commit comments

Comments
 (0)