This repository was archived by the owner on Oct 8, 2025. It is now read-only.
Merge pull request #5 from Diggy0/lecyberpunkaccent #1
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
| # SPDX-FileCopyrightText: 2022 Paul Ritter <[email protected]> | |
| # SPDX-FileCopyrightText: 2022 Paul Ritter <[email protected]> | |
| # SPDX-FileCopyrightText: 2022 wrexbe <[email protected]> | |
| # SPDX-FileCopyrightText: 2023 DrSmugleaf <[email protected]> | |
| # SPDX-FileCopyrightText: 2023 Moony <[email protected]> | |
| # SPDX-FileCopyrightText: 2023 Pieter-Jan Briers <[email protected]> | |
| # SPDX-FileCopyrightText: 2023 metalgearsloth <[email protected]> | |
| # SPDX-FileCopyrightText: 2024 Myra <[email protected]> | |
| # SPDX-FileCopyrightText: 2025 Aiden <[email protected]> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: RGA schema validator | |
| on: | |
| push: | |
| branches: [ master, staging, stable ] | |
| merge_group: | |
| pull_request: | |
| types: [ opened, reopened, synchronize, ready_for_review ] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| yaml-schema-validation: | |
| name: YAML RGA schema validator | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Setup Submodule | |
| run: git submodule update --init | |
| - name: Pull engine updates | |
| uses: space-wizards/[email protected] | |
| - uses: PaulRitter/yaml-schema-validator@v1 | |
| with: | |
| schema: RobustToolbox/Schemas/rga.yml | |
| path_pattern: .*attributions.ya?ml$ | |
| validators_path: RobustToolbox/Schemas/rga_validators.py | |
| validators_requirements: RobustToolbox/Schemas/rga_requirements.txt |