Skip to content

Commit

Permalink
Add codespell action
Browse files Browse the repository at this point in the history
  • Loading branch information
xhanulik authored and frankmorgner committed Apr 27, 2024
1 parent 3418cc1 commit f96bd3f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/codespell_ignore_words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Feitian
GOST
signatur
21 changes: 21 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Codespell

on:
pull_request:
push:

permissions:
contents: read

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
skip: ./attachments,./ws,./opensc-projects.org
ignore_words_file: .github/codespell_ignore_words.txt

0 comments on commit f96bd3f

Please sign in to comment.