summaryrefslogtreecommitdiff
path: root/.github/workflows/check_misc.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-11-05 02:11:07 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-11-05 02:11:07 +0900
commit054a4672cb8dbb9edb3f84c14c09ac17fbec1102 (patch)
tree6c67b501de5969dfc5908f48295d123da5402654 /.github/workflows/check_misc.yml
parent8ed733f8f22cdc56a9d2694078871cfc401cb029 (diff)
Check non-ASCII code in more sources including generated files
Diffstat (limited to '.github/workflows/check_misc.yml')
-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 32ba8d71a6..d8f73d26ec 100644
--- a/.github/workflows/check_misc.yml
+++ b/.github/workflows/check_misc.yml
@@ -28,7 +28,7 @@ jobs:
- name: Check if C-sources are US-ASCII
run: |
- grep -r -n $'[^\t -~]' -- *.[chy] include internal win32/*.[ch] && exit 1 || :
+ grep -r -n --include='*.[chyS]' --include='*.asm' $'[^\t-~]' -- . && exit 1 || :
- name: Check for trailing spaces
run: |