File tree 3 files changed +4
-0
lines changed
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
steps :
9
9
- uses : actions/checkout@v4
10
+ # codespell version should be kept in sync with .pre-commit-config.yml
10
11
- run : pip install --user codespell==2.2.6 tomli
11
12
- run : codespell
12
13
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- uses : actions/checkout@v4
9
+ # ruff version should be kept in sync with .pre-commit-config.yaml
9
10
- run : pip install --user ruff==0.1.3
10
11
- run : ruff check --output-format=github .
11
12
- run : ruff format --diff .
Original file line number Diff line number Diff line change @@ -12,11 +12,13 @@ repos:
12
12
verbose : true
13
13
stages : [commit-msg]
14
14
- repo : https://github.com/charliermarsh/ruff-pre-commit
15
+ # Version should be kept in sync with .github/workflows/ruff.yml
15
16
rev : v0.1.3
16
17
hooks :
17
18
- id : ruff
18
19
- id : ruff-format
19
20
- repo : https://github.com/codespell-project/codespell
21
+ # Version should be kept in sync with .github/workflows/codespell.yml
20
22
rev : v2.2.6
21
23
hooks :
22
24
- id : codespell
You can’t perform that action at this time.
0 commit comments