Skip to content

Commit

Permalink
Add spell check in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ydah committed Oct 15, 2023
1 parent be55952 commit 36d7ffa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Empty file added .codespellignore
Empty file.
15 changes: 15 additions & 0 deletions .github/workflows/codespell.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CodeSpell
on:
- pull_request
jobs:
codespell:
name: CodeSpell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CodeSpell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
check_hidden: true
ignore_words_file: .codespellignore

0 comments on commit 36d7ffa

Please sign in to comment.