Skip to content

Commit a9bc0e9

Browse files
oops
1 parent 72e9d7c commit a9bc0e9

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ on:
66
branches: [main]
77
workflow_call:
88

9+
concurrency:
10+
group: test-${{ github.head_ref }}
11+
cancel-in-progress: true
12+
913
permissions:
1014
contents: read
1115

1216
env:
1317
CARGO_TERM_COLOR: always
1418
FORCE_COLOR: "1"
1519
PYTHONUNBUFFERED: "1"
16-
UV_VERSION: "0.4.x"
1720

1821
jobs:
1922
pre-commit:
@@ -25,7 +28,7 @@ jobs:
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:

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)