1 parent 98f9ac0 commit 9a9e01eCopy full SHA for 9a9e01e
1 file changed
.github/workflows/codespell.yml
@@ -0,0 +1,28 @@
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: debian-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
28
+ codespell --ignore-words="".codespell.ignore"
0 commit comments