There was an error while loading. Please reload this page.
1 parent efc1c05 commit ccb8979Copy full SHA for ccb8979
template/.github/workflows/tests.yml.jinja
@@ -6,14 +6,20 @@ jobs:
6
strategy:
7
fail-fast: false
8
matrix:
9
- python-version: ["3.10", "3.11", "3.12", "3.13"]
+ python-version: [
10
+ {%- for version in py_versions_range(python_min_version, python_max_version) %}
11
+ "{{ version }}"{{ "," if not loop.last }}
12
+ {%- endfor %}
13
+ ]
14
steps:
15
- uses: actions/checkout@v4
16
- name: Install uv
17
uses: astral-sh/setup-uv@v3
18
+ {% raw %}
19
- name: Set up Python ${{ matrix.python-version }}
20
run: uv python install ${{ matrix.python-version }}
21
- name: Install dependencies
22
run: uv sync --extra test --python ${{ matrix.python-version }}
23
+ {% endraw %}
24
- name: Run pytest
25
run: uv run pytest -v
0 commit comments