Skip to content

Commit 5b31cca

Browse files
committed
CI: fix yaml
1 parent b892305 commit 5b31cca

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

.github/workflows/lint.yaml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,38 @@ jobs:
88
black:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- name: Set up Python
13-
uses: actions/setup-python@v5
14-
- name: Install dependencies
15-
run: |
16-
python -m pip install --upgrade pip
17-
pip install black codespell
18-
- name: Check with black
19-
run: black --check .
11+
- uses: actions/checkout@v4
12+
- name: Set up Python
13+
uses: actions/setup-python@v5
14+
- name: Install dependencies
15+
run: |
16+
python -m pip install --upgrade pip
17+
pip install black codespell
18+
- name: Check with black
19+
run: black --check .
2020

2121
codespell:
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
25-
- uses: codespell-project/actions-codespell@master
26-
with:
27-
skip: '*.po',encoding_latin1.py
28-
ignore_words_list: ba,te,deltion,dedent,dedented,assertIn
24+
- uses: actions/checkout@v4
25+
- uses: codespell-project/actions-codespell@master
26+
with:
27+
skip: "*.po,encoding_latin1.py"
28+
ignore_words_list: ba,te,deltion,dedent,dedented,assertIn
2929

3030
mypy:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
34-
- name: Set up Python
35-
uses: actions/setup-python@v5
36-
- name: Install dependencies
37-
run: |
38-
python -m pip install --upgrade pip
39-
pip install mypy
40-
pip install -r requirements.txt
41-
pip install urwid twisted watchdog "jedi >=0.16" babel "sphinx >=1.5" numpy
42-
pip install types-backports types-requests types-setuptools types-toml types-pygments
43-
- name: Check with mypy
44-
# for now only run on a few files to avoid slipping backward
45-
run: mypy
33+
- uses: actions/checkout@v4
34+
- name: Set up Python
35+
uses: actions/setup-python@v5
36+
- name: Install dependencies
37+
run: |
38+
python -m pip install --upgrade pip
39+
pip install mypy
40+
pip install -r requirements.txt
41+
pip install urwid twisted watchdog "jedi >=0.16" babel "sphinx >=1.5" numpy
42+
pip install types-backports types-requests types-setuptools types-toml types-pygments
43+
- name: Check with mypy
44+
# for now only run on a few files to avoid slipping backward
45+
run: mypy

0 commit comments

Comments
 (0)