From 32037628cec431f76526715d396050be058e3485 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 14 Oct 2023 13:51:35 -0400 Subject: [PATCH] Add a separate `codespell` job for assembly files --- .github/workflows/SpellCheck.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index fefa252166d73..880ee8d15f207 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -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'