Add a check to ensure schemas haven't changed. #213
Workflow file for this run
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: 'Shellcheck' | |
on: | |
push: | |
paths: | |
- '**.sh' | |
pull_request: | |
paths: | |
- '**.sh' | |
permissions: | |
contents: read | |
jobs: | |
check-scripts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: 'Check scripts in all directories' | |
run: make check_scripts |