Skip to content

Commit c7f1ea5

Browse files
committed
Add codespell check
1 parent 98f9ac0 commit c7f1ea5

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/codespell.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
28+
codespell

0 commit comments

Comments
 (0)