We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 366a313 commit 7a9430fCopy full SHA for 7a9430f
.github/workflows/ci.yml
@@ -20,6 +20,18 @@ jobs:
20
uses: actions/setup-python@v4
21
with:
22
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
35
36
- name: Install dependencies
37
run: |
0 commit comments