Skip to content

Commit 74dd9c5

Browse files
committed
Add codespell check
Show codespell version
1 parent 6d37984 commit 74dd9c5

2 files changed

Lines changed: 31 additions & 0 deletions

File tree

.codespell.ignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ hel
1212
hist
1313
infor
1414
inout
15+
koordinates
1516
larg
1617
mater
1718
mis
@@ -22,6 +23,7 @@ nempty
2223
ot
2324
outin
2425
outout
26+
pease
2527
pixelx
2628
raison
2729
rin

.github/workflows/codespell.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Codespell Check
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- 'main'
7+
pull_request: ~
8+
9+
jobs:
10+
linux:
11+
12+
runs-on: ubuntu-latest
13+
14+
name: "CI Codespell"
15+
16+
17+
steps:
18+
19+
- name: 'Check Out'
20+
uses: actions/checkout@v4
21+
22+
- name: 'Install codespell'
23+
run: |
24+
sudo apt-get -y install codespell
25+
26+
- name: 'Build & Test'
27+
run: |
28+
codespell --version
29+
codespell -I ".codespell.ignore"

0 commit comments

Comments
 (0)