Skip to content

Commit d7d69ab

Browse files
committed
ci(codespell): deploy
Signed-off-by: Frederic Pillon <[email protected]>
1 parent f206587 commit d7d69ab

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/CodeSpell.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Check misspelled words with codespell
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
# Allows you to run this workflow manually from the Actions tab
9+
workflow_dispatch:
10+
jobs:
11+
codespell:
12+
name: Check for spelling errors
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@main
18+
19+
# See: https://github.com/codespell-project/actions-codespell/blob/master/README.md
20+
- name: Spell check
21+
uses: codespell-project/actions-codespell@master
22+
with:
23+
check_filenames: true
24+
check_hidden: true
25+
# In the event of a false positive, add the word in all lower case to this file:
26+
ignore_words_file: ./extras/.codespellignore
27+
skip: ./.git,./extras/.codespellignore

extras/.codespellignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
aci

0 commit comments

Comments
 (0)