From c2bf58f09fa9724bdfcb791e15af6b4b2c9b6d48 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 14 Oct 2023 14:11:48 -0400 Subject: [PATCH] Put `.cpp` files into their own `codespell` job --- .github/workflows/SpellCheck.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index a0222bc807a763..d06172f3de08db 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -26,7 +26,7 @@ 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 @@ -34,6 +34,7 @@ jobs: fail-fast: false matrix: file-extension: + - 'cpp' # C++ files - 'jl' # Julia files - 'md' # Markdown files - 'scm' # Scheme (femtolisp) files