Skip to content

Commit 5367498

Browse files
committed
Add upgrade pip step to workflow
1 parent 5b3c057 commit 5367498

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
22-
run: pip install tox tox-gh
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install tox tox-gh
2325
- name: Test with tox
2426
run: tox -e ${{ matrix.python-version }}

0 commit comments

Comments
 (0)