Skip to content

Commit

Permalink
feat: hello codespell
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kesselberg <[email protected]>
  • Loading branch information
kesselb committed Jul 19, 2024
1 parent b2eb7c9 commit 4c2fff1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Empty file added .codespellignore
Empty file.
4 changes: 4 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[codespell]
skip = ./build/*,**/_build/*,*.pot,conf.py,./static/*,./admin_manual/configuration_server/config_sample_php_parameters.rst,./_shared_assets/*
ignore-words = .codespellignore
check-filenames = true
17 changes: 17 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Codespell'

on:
pull_request:
push:
branches:
- master

jobs:
codespell:
name: Check spelling
runs-on: self-hosted
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Check spelling
uses: codespell-project/actions-codespell@v2

0 comments on commit 4c2fff1

Please sign in to comment.