From 973648d914f5fb07a87b3d3ef490375cd601e4ee Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sat, 14 Oct 2023 14:15:17 -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 095718fd135be..f41b38e3cb990 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='*.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 @@ -35,6 +35,7 @@ jobs: matrix: file-extension: - 'c' # C files + - 'cpp' # C++ files - 'jl' # Julia files - 'md' # Markdown files - 'scm' # Scheme (femtolisp) files