This repository was archived by the owner on Apr 21, 2026. It is now read-only.
Merge pull request #50 from Triad-Sector/changes #43
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 | |
| on: | |
| push: | |
| branches: [ master, staging, stable ] | |
| merge_group: | |
| pull_request: | |
| paths: | |
| - '**.rsi/**' | |
| jobs: | |
| validate_rsis: | |
| name: Validate RSIs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Setup Submodule | |
| run: git submodule update --init | |
| - name: Pull engine updates | |
| uses: space-wizards/submodule-dependency@v0.1.5 | |
| - name: Set up Python 3.10 # Frontier | |
| uses: actions/setup-python@v3 # Frontier | |
| with: # Frontier | |
| python-version: "3.10" # Frontier | |
| - name: Install Python dependencies | |
| run: | | |
| pip3 install --ignore-installed --user pillow jsonschema | |
| - name: Validate RSIs | |
| run: | | |
| python3 RobustToolbox/Schemas/validate_rsis.py Resources/ |