File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,18 @@ jobs:
30
30
SKIP : no-commit-to-branch
31
31
32
32
test :
33
+ name : Test (${{ matrix.python-version }}) (${{ matrix.os }}) (${{ matrix.dep-resolution.name }})
33
34
runs-on : ${{ matrix.os }}
34
35
timeout-minutes : 10
35
36
continue-on-error : true
36
37
strategy :
37
38
matrix :
38
39
python-version : ["3.10", "3.11", "3.12", "3.13"]
39
- dep-resolution : ["lowest-direct", "highest"]
40
+ dep-resolution :
41
+ - name : lowest-direct
42
+ install-flags : " --resolution lowest-direct"
43
+ - name : highest
44
+ install-flags : " --frozen"
40
45
os : [ubuntu-latest, windows-latest]
41
46
42
47
steps :
49
54
version : 0.7.2
50
55
51
56
- name : Install the project
52
- run : uv sync --frozen --all-extras --python ${{ matrix.python-version }} --resolution ${{ matrix.dep-resolution }}
57
+ run : uv sync ${{ matrix.dep-resolution.install-flags }} --all-extras --python ${{ matrix.python-version }}
53
58
54
59
- name : Run pytest
55
60
run : uv run --frozen --no-sync pytest
You can’t perform that action at this time.
0 commit comments