Skip to content

Commit 7a9430f

Browse files
committed
fix: workflow dependency installed before tests check
1 parent 366a313 commit 7a9430f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ jobs:
2020
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
23+
24+
- name: Install build tools
25+
run: python -m pip install --upgrade pip setuptools wheel
26+
27+
- name: Install dev requirements
28+
run: |
29+
python -m pip install -r requirements-dev.txt
30+
# If you named it differently, change the file path.
31+
32+
- name: Install package (editable)
33+
run: python -m pip install -e .
34+
2335

2436
- name: Install dependencies
2537
run: |

0 commit comments

Comments
 (0)