We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 770b7ab commit 67133f8Copy full SHA for 67133f8
.github/workflows/on-push.yml
@@ -166,6 +166,26 @@ jobs:
166
- name: Run tests
167
run: uv run pytest -vv
168
169
+ minver-tests:
170
+ needs: [unit-tests]
171
+ if: |
172
+ success() && true
173
+ runs-on: ubuntu-latest
174
+
175
+ steps:
176
+ - uses: actions/checkout@v4
177
178
+ - name: Install uv and set the python version
179
+ uses: astral-sh/setup-uv@v5
180
+ with:
181
+ python-version: "3.10"
182
183
+ - name: Install the project
184
+ run: uv sync --dev --resolve lower-direct
185
186
+ - name: Run tests
187
+ run: uv run pytest -vv
188
189
distribution:
190
runs-on: ubuntu-latest
191
needs: [unit-tests, type-check, docs-build, integration-tests]
0 commit comments