Skip to content

Commit

Permalink
Put .cpp files into their own codespell job
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Oct 14, 2023
1 parent cac995f commit 973648d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
persist-credentials: false
- run: pip install codespell
- run: codespell --skip='*.c,*.jl,*.md,*.scm,*.S' --ignore-words=.codespell.ignore
- run: codespell --skip='*.c,*.cpp,*.jl,*.md,*.scm,*.S' --ignore-words=.codespell.ignore
codespell-file-extension:
runs-on: ubuntu-latest
timeout-minutes: 5
Expand All @@ -35,6 +35,7 @@ jobs:
matrix:
file-extension:
- 'c' # C files
- 'cpp' # C++ files
- 'jl' # Julia files
- 'md' # Markdown files
- 'scm' # Scheme (femtolisp) files
Expand Down

0 comments on commit 973648d

Please sign in to comment.