[codex] Add ToS multilingual philosophy labels #213
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: Repo Validation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| release_audit: | |
| name: Repo Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - name: Setup Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 | |
| with: | |
| python-version: "3.12" | |
| - name: Install validator dependencies | |
| run: python -m pip install -r requirements-dev.txt | |
| - name: Fetch OS Abyss artifact verifier | |
| run: git clone --depth 1 --branch main https://github.com/8Dionysus/abyss-machine.git "$RUNNER_TEMP/abyss-machine" | |
| - name: Run release audit | |
| env: | |
| ABYSS_MACHINE_REPO_ROOT: ${{ runner.temp }}/abyss-machine | |
| run: python scripts/release_check.py |