aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/codespell.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/codespell.yml')
-rw-r--r--.github/workflows/codespell.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
new file mode 100644
index 000000000..feadb9a34
--- /dev/null
+++ b/.github/workflows/codespell.yml
@@ -0,0 +1,23 @@
1# Codespell configuration is within .codespellrc
2---
3name: Codespell
4
5on:
6 push:
7 branches: [develop]
8 pull_request:
9 branches: [develop]
10
11permissions:
12 contents: read
13
14jobs:
15 codespell:
16 name: Check for spelling errors
17 runs-on: ubuntu-22.04
18
19 steps:
20 - name: Checkout
21 uses: actions/checkout@v4
22 - name: Codespell
23 uses: codespell-project/actions-codespell@v2