1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Check macros for headers

This commit is contained in:
Nobuyoshi Nakada 2020-12-19 16:10:57 +09:00
parent 197550c956
commit 042c3e91fb
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6

View file

@ -9,3 +9,9 @@ jobs:
- name: Check if C-sources are US-ASCII
run: |
! grep -r -n '[^ -~]' *.[chy] include internal win32/*.[ch]
- name: Check for header macros
run: |
! for header in ruby/*.h; do \
git grep -l -F -e $header -e HAVE_`echo $header | tr a-z./ A-Z__` -- . > /dev/null || echo $header
done | grep -F .
working-directory: include