more uniform usage of m_timer_8 and m_timer_16 accross all TLCS900 va… #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Check #include guards' | |
on: | |
push: | |
paths: | |
- '.github/workflows/**' | |
- 'src/devices/**.h' | |
- 'src/mame/**.h' | |
pull_request: | |
- '.github/workflows/**' | |
- 'src/devices/**.h' | |
- 'src/mame/**.h' | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 0 | |
- name: Validate | |
run: python3 scripts/build/check_include_guards.py src/devices src/mame |