Skip to content

Commit 589b394

Browse files
authored
Merge pull request #4 from vgvozdeva/vgvozdeva/codespell
github:add codespell
2 parents a56d0bd + cf6f3ce commit 589b394

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/pr-linter.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,24 @@ jobs:
118118
config: ".github/.licenserc.yml"
119119
mode: "check"
120120

121+
pr-check-codespell:
122+
name: Codespell Check
123+
runs-on: ubuntu-24.04
124+
steps:
125+
- name: "Checkout code"
126+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
127+
with:
128+
persist-credentials: false
129+
130+
- name: "Install codespell"
131+
run: |
132+
python3 -m pip install --upgrade pip
133+
python3 -m pip install codespell
134+
135+
- name: "Run codespell"
136+
run: |
137+
codespell *.md doc
138+
121139
other-lint:
122140
name: Other linters
123141
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)