Automatic code checks workflow #4
Workflow file for this run
This file contains hidden or 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: Validate contents | |
| on: | |
| workflow_dispatch: # manual trigger | |
| push: | |
| paths: | |
| - ".github/workflows/**" | |
| - "examples/**/*.h*" | |
| - "examples/**/*.c*" | |
| - "plugin_*/**/*.c*" | |
| - "plugin_*/**/*.h*" | |
| - "plugin_*/**/*.c*" | |
| - "shared/**/*.h*" | |
| - "shared/**/*.c*" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/**" | |
| - "examples/**/*.h*" | |
| - "examples/**/*.c*" | |
| - "plugin_*/**/*.c*" | |
| - "plugin_*/**/*.h*" | |
| - "plugin_*/**/*.c*" | |
| - "shared/**/*.h*" | |
| - "shared/**/*.c*" | |
| jobs: | |
| Validate_contents: | |
| name: Validate contents | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Check files | |
| run: node .github/workflows/scripts/Validate_Contents.js "github" |