mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Use extquote instead of literal tabs [ci skip]
This commit is contained in:
parent
25c1204fe7
commit
92f29349d5
1 changed files with 3 additions and 3 deletions
6
.github/workflows/check_misc.yml
vendored
6
.github/workflows/check_misc.yml
vendored
|
@ -28,12 +28,12 @@ jobs:
|
|||
|
||||
- name: Check if C-sources are US-ASCII
|
||||
run: |
|
||||
grep -r -n '[^ -~]' -- *.[chy] include internal win32/*.[ch] && exit 1 || :
|
||||
grep -r -n $'[^\t -~]' -- *.[chy] include internal win32/*.[ch] && exit 1 || :
|
||||
|
||||
- name: Check for trailing spaces
|
||||
run: |
|
||||
git grep -I -n '[ ]$' -- '*.rb' '*.[chy]' '*.rs' && exit 1 || :
|
||||
git grep -n '^[ ][ ]*$' -- '*.md' && exit 1 || :
|
||||
git grep -I -n $'[\t ]$' -- '*.rb' '*.[chy]' '*.rs' && exit 1 || :
|
||||
git grep -n $'^[\t ][\t ]*$' -- '*.md' && exit 1 || :
|
||||
|
||||
- name: Check for bash specific substitution in configure.ac
|
||||
run: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue