RSI Validator #9960
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: RSI Validator | |
| # Cancel older jobs on PRs when new changes are pushed | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| on: | |
| push: | |
| branches: [ master, staging, stable, Starlight ] | |
| merge_group: | |
| pull_request: | |
| paths: | |
| - '**.rsi/**' | |
| jobs: | |
| validate_rsis: | |
| name: Validate RSIs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Setup Submodule | |
| run: git submodule update --init | |
| - name: Pull engine updates | |
| uses: space-wizards/submodule-dependency@v0.1.5 | |
| - name: Install Python dependencies | |
| run: | | |
| pip3 install --ignore-installed --user pillow jsonschema | |
| - name: Validate RSIs | |
| run: | | |
| python3 Tools/Schemas/validate_rsis.py Resources/ |