Skip to content

Commit 4c2fff1

Browse files
committed
feat: hello codespell
Signed-off-by: Daniel Kesselberg <[email protected]>
1 parent b2eb7c9 commit 4c2fff1

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.codespellignore

Whitespace-only changes.

.codespellrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[codespell]
2+
skip = ./build/*,**/_build/*,*.pot,conf.py,./static/*,./admin_manual/configuration_server/config_sample_php_parameters.rst,./_shared_assets/*
3+
ignore-words = .codespellignore
4+
check-filenames = true

.github/workflows/codespell.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: 'Codespell'
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
codespell:
11+
name: Check spelling
12+
runs-on: self-hosted
13+
steps:
14+
- name: Check out code
15+
uses: actions/checkout@v4
16+
- name: Check spelling
17+
uses: codespell-project/actions-codespell@v2

0 commit comments

Comments
 (0)