From 5579cbe2dd6fda86d2c31c9c0a6ee4697fc31e26 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 20 Apr 2023 09:58:49 +0900 Subject: Ignore ASCII-incompatible scripts under spec/ruby [ci skip] --- .github/workflows/check_misc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') 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: | -- cgit v1.2.1