We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a80e025 commit 52962b6Copy full SHA for 52962b6
1 file changed
.github/workflows/ci.yml
@@ -48,7 +48,7 @@ jobs:
48
49
- run: poetry env use "${{ matrix.python-version }}"
50
51
- - run: poetry install --extras "django sqlalchemy"
+ - run: poetry install --extras "django sqlalchemy" --without "docs"
52
53
- name: Run tests
54
run: scripts/tests
@@ -75,11 +75,14 @@ jobs:
75
76
- uses: actions/setup-python@v5
77
with:
78
- python-version: "3.8" # Important for importlib_metadata
+ python-version: "3.8"
79
cache: "poetry"
80
81
+ - name: Use selected Python version
82
+ run: poetry env use 3.8
83
+
84
- name: Install dependencies
- run: poetry install --all-extras --with=types
85
+ run: poetry install --all-extras --with=types --without=docs
86
87
- name: Activate virtualenv
88
run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
0 commit comments