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

25 lines
837 B
YAML
Raw Normal View History

name: Miscellaneous checks
on: [push, pull_request]
concurrency:
2021-11-21 05:17:27 -05:00
group: ${{ github.workflow }} / ${{ startsWith(github.event_name, 'pull') && github.ref_name || github.sha }}
cancel-in-progress: ${{ startsWith(github.event_name, 'pull') }}
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check if C-sources are US-ASCII
run: |
! grep -r -n '[^ -~]' *.[chy] include internal win32/*.[ch]
2021-03-03 21:39:45 -05:00
- name: Check for trailing spaces
run: |
! git grep -n '[ ]$' '*.rb' '*.[chy]'
2020-12-19 02:10:57 -05:00
- 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