File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 66 branches : [main]
77 workflow_call :
88
9+ concurrency :
10+ group : test-${{ github.head_ref }}
11+ cancel-in-progress : true
12+
913permissions :
1014 contents : read
1115
1216env :
1317 CARGO_TERM_COLOR : always
1418 FORCE_COLOR : " 1"
1519 PYTHONUNBUFFERED : " 1"
16- UV_VERSION : " 0.4.x"
1720
1821jobs :
1922 pre-commit :
2528 uses : astral-sh/setup-uv@v5
2629 with :
2730 enable-cache : true
28- version : ${{ env.UV_VERSION }}
31+ pyproject-file : pyproject.toml
2932
3033 - uses : actions/cache@v4
3134 with :
Original file line number Diff line number Diff line change @@ -139,7 +139,9 @@ def gha_matrix(session):
139139 if session ["name" ] == "tests"
140140 ]
141141
142- matrix = [{** combo , "os" : os } for os in os_list for combo in versions_list ]
142+ matrix = {
143+ "include" : [{** combo , "os" : os } for os in os_list for combo in versions_list ]
144+ }
143145
144146 if os .environ .get ("GITHUB_OUTPUT" ):
145147 with Path (os .environ ["GITHUB_OUTPUT" ]).open ("a" ) as fh :
You can’t perform that action at this time.
0 commit comments