Skip to content

Commit 85f5fe9

Browse files
Евгений БлиновЕвгений Блинов
authored andcommitted
Quote python-version values in lint workflow matrix
1 parent ad620f8 commit 85f5fe9

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/lint.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ jobs:
99
matrix:
1010
include:
1111
- os: ubuntu-latest
12-
python-version: 3.8
12+
python-version: "3.8"
1313
- os: ubuntu-latest
14-
python-version: 3.9
14+
python-version: "3.9"
1515
- os: ubuntu-20.04
1616
python-version: "3.9.1"
1717
- os: ubuntu-latest
18-
python-version: 3.10
18+
python-version: "3.10" # <--- Вот здесь была главная проблема
1919
- os: ubuntu-latest
20-
python-version: 3.11
20+
python-version: "3.11"
2121
- os: ubuntu-latest
22-
python-version: 3.12
22+
python-version: "3.12"
2323
- os: ubuntu-latest
24-
python-version: 3.13
24+
python-version: "3.13"
2525
- os: ubuntu-latest
26-
python-version: 3.14
26+
python-version: "3.14"
2727
- os: ubuntu-latest
28-
python-version: 3.14t
28+
python-version: "3.14t"
2929
- os: ubuntu-latest
30-
python-version: 3.15.0-alpha.1
30+
python-version: "3.15.0-alpha.1"
3131

3232
steps:
3333
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)