Skip to content

Commit 593c296

Browse files
committed
github actions test
1 parent 55e4b8c commit 593c296

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ jobs:
2020

2121
- uses: actions/checkout@v2
2222

23-
- uses: actions/setup-python@v2.3.1
23+
- uses: actions/setup-python@v4
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

27-
- run: pip install -U setuptools
28-
29-
- run: pip install -r requirements.txt
30-
31-
- run: pip install -e .[dev]
27+
- name: Upgrade pip & Install Dependencies
28+
run: |
29+
python -m pip install --upgrade pip setuptools wheel
30+
pip install --upgrade cffi cryptography
31+
pip install --upgrade -r requirements.txt
32+
pip install -e .[dev]
3233
3334
- name: Workaround for cffi ImportError
3435
run: |

0 commit comments

Comments
 (0)