Skip to content

Commit

Permalink
Add a separate codespell job for assembly files
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Oct 14, 2023
1 parent 63fcbbe commit 3203762
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/SpellCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,15 @@ jobs:
with:
persist-credentials: false
- run: pip install codespell
- run: codespell --ignore-words=.codespell.ignore
# All files except assembly files (*.S)
- run: codespell --skip='*.S' --ignore-words=.codespell.ignore
codespell-asm:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- run: pip install codespell
# Only assembly files
- run: codespell --skip='*.c,*.cpp,*.jl,*.md,*.scm'

0 comments on commit 3203762

Please sign in to comment.