1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

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` - name: Run `cspell`
shell: bash shell: bash
run: | 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: code_warnings:
name: Style/warnings name: Style/warnings