Skip to content

Commit 90fac6b

Browse files
committed
Fix CI: install dependencies before running tests in python-ci.yml
1 parent ccce20a commit 90fac6b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/python-ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install -r requirements-dev.txt
29+
2530
- name: Syntax check with py_compile
2631
run: |
2732
find . -name "*.py" -exec python -m py_compile {} +

0 commit comments

Comments
 (0)