From 8de42ed18e1b14c8d8686e9b3a2519e1e1fa0f98 Mon Sep 17 00:00:00 2001 From: Michael Debertol Date: Mon, 31 May 2021 22:23:40 +0200 Subject: [PATCH] maint: actually run spellcheck on all files **/* must be quoted, otherwise it is expanded by the shell and not literally passed to cspell. --- .github/workflows/CICD.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 4ce9e556d..32c3537c2 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -74,7 +74,7 @@ jobs: - name: Run `cspell` shell: bash run: | - cspell --config .vscode/cSpell.json --no-summary --no-progress **/* | sed "s/\(.*\):\(.*\):\(.*\) - \(.*\)/::warning file=\1,line=\2,col=\3::cspell: \4/" || true + cspell --config .vscode/cSpell.json --no-summary --no-progress "**/*" | sed "s/\(.*\):\(.*\):\(.*\) - \(.*\)/::warning file=\1,line=\2,col=\3::cspell: \4/" || true code_warnings: name: Style/warnings