maint: actually run spellcheck on all files

**/* must be quoted, otherwise it is expanded by the shell and not
literally passed to cspell.
This commit is contained in:
Michael Debertol 2021-05-31 22:23:40 +02:00
parent badf7aacb7
commit 8de42ed18e

View file

@ -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