summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-04-20 09:58:49 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-04-20 10:29:16 +0900
commit5579cbe2dd6fda86d2c31c9c0a6ee4697fc31e26 (patch)
treebc961afd3f63260f5ee9251c0643423bd6ea9bb3 /.github
parentad4a160220abad330cb9ba41e5dcd5e46bb056f4 (diff)
downloadruby-5579cbe2dd6fda86d2c31c9c0a6ee4697fc31e26.tar.gz
Ignore ASCII-incompatible scripts under spec/ruby [ci skip]
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/check_misc.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/check_misc.yml b/.github/workflows/check_misc.yml
index 80f17d34d5..403fa26d1f 100644
--- a/.github/workflows/check_misc.yml
+++ b/.github/workflows/check_misc.yml
@@ -20,7 +20,7 @@ jobs:
grep -r -n '[^ -~]' -- *.[chy] include internal win32/*.[ch] && exit 1 || :
- name: Check for trailing spaces
run: |
- git grep -n '[ ]$' -- '*.rb' '*.[chy]' '*.rs' && exit 1 || :
+ git grep -I -n '[ ]$' -- '*.rb' '*.[chy]' '*.rs' && exit 1 || :
git grep -n '^[ ][ ]*$' -- '*.md' && exit 1 || :
- name: Check for bash specific substitution in configure.ac
run: |