Skip to content

Commit 3200817

Browse files
committed
Fix CI workflow
1 parent f6d24d9 commit 3200817

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,10 @@ jobs:
1414
with:
1515
python-version: "3.11"
1616

17-
- run: pip install -r requirements.txt
18-
- run: pytest -q
17+
- name: Install dependencies
18+
run: |
19+
python -m pip install --upgrade pip
20+
pip install -r requirements.txt
21+
22+
- name: Run tests
23+
run: pytest -q

0 commit comments

Comments
 (0)