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 271524b commit c2bf58f
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,14 +26,15 @@ jobs:
with:
persist-credentials: false
- run: pip install codespell
- run: codespell --skip='*.jl,*.md,*.scm,*.S' --ignore-words=.codespell.ignore
- run: codespell --skip='*.cpp,*.jl,*.md,*.scm,*.S' --ignore-words=.codespell.ignore
codespell-file-extension:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
file-extension:
- 'cpp' # C++ files
- 'jl' # Julia files
- 'md' # Markdown files
- 'scm' # Scheme (femtolisp) files
Expand Down

0 comments on commit c2bf58f

Please sign in to comment.