Check for trailing spaces

This commit is contained in:
Nobuyoshi Nakada 2021-03-04 11:39:45 +09:00
parent 1876782155
commit dea08758be
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -9,6 +9,9 @@ jobs:
- name: Check if C-sources are US-ASCII
run: |
! grep -r -n '[^ -~]' *.[chy] include internal win32/*.[ch]
- name: Check for trailing spaces
run: |
! git grep -n '[ ]$' '*.rb' '*.[chy]'
- name: Check for header macros
run: |
! for header in ruby/*.h; do \