We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d7b35 commit 77b58d9Copy full SHA for 77b58d9
1 file changed
.github/workflows/verify-buildability.yml
@@ -14,6 +14,7 @@ jobs:
14
runs-on: ubuntu-latest
15
env:
16
PIP_USE_PEP517: '1'
17
+ REQUIREMENTS_FILE: 'requirements.dev.txt'
18
steps:
19
- name: Checkout sources
20
id: checkout-sources
@@ -26,8 +27,14 @@ jobs:
26
27
cache: pip
28
cache-dependency-path: pyproject.toml
29
- - name: install dev dependencies
30
- run: pip3 install ".[dev]"
+ - name: install pip-tools
31
+ run: pip3 install pip-tools
32
+
33
+ - name: create dev requirements
34
+ run: pip-compile --upgrade --extra=dev -o $REQUIREMENTS_FILE
35
36
+ - name: install dev requirements
37
+ run: pip3 install -r $REQUIREMENTS_FILE
38
39
- name: run pre-commit-check
40
run: >
0 commit comments