Skip to content

Commit ff84fab

Browse files
Евгений БлиновЕвгений Блинов
authored andcommitted
Fix indentation and structure in lint workflow matrix blocks
1 parent dd41411 commit ff84fab

1 file changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/lint.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
matrix:
1010
python-version: ["3.8", "3.9", "3.9.1", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t", "3.15.0-alpha.1"]
1111
os: [ubuntu-latest]
12-
exclude: # ← На уровне matrix (отступ 6 пробелов от strategy)
13-
- python-version: '3.9.1'
12+
exclude:
13+
- python-version: 3.9.1
1414
os: ubuntu-latest
15-
include: # ← На уровне matrix
16-
- python-version: '3.9.1'
15+
include:
16+
- python-version: 3.9.1
1717
os: ubuntu-24.04
1818

1919
steps:
@@ -34,25 +34,19 @@ jobs:
3434
${{ runner.os }}-pip-${{ github.workflow }}-
3535
3636
- name: Install dependencies
37-
shell: bash
3837
run: pip install -r requirements_dev.txt
3938

4039
- name: Install the library
41-
shell: bash
4240
run: pip install .
4341

4442
- name: Run ruff
45-
shell: bash
4643
run: ruff check transfunctions
4744

4845
- name: Run ruff for tests
49-
shell: bash
5046
run: ruff check tests
5147

5248
- name: Run mypy
53-
shell: bash
5449
run: mypy --strict transfunctions
5550

5651
- name: Run mypy for tests
57-
shell: bash
5852
run: mypy tests --exclude typing

0 commit comments

Comments
 (0)