Skip to content

Commit

Permalink
Add Codespell workflow (#384)
Browse files Browse the repository at this point in the history
Add codespell workflow

- Check on pull requests only
- ignore words from new ignore file
- Only warn
- Only run in the docs directory
  • Loading branch information
davidjharder authored Sep 23, 2023
1 parent 595dd70 commit 7f67645
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Empty file added .codespelligonore
Empty file.
14 changes: 14 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: codespell

on: pull_request

jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ignore_words_file: .codespellignore
only_warn: 1
path: docs

0 comments on commit 7f67645

Please sign in to comment.