Add enforceable line-ending policy gate #75
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: TestForge checks | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| line-ending-policy: | |
| name: line-ending-policy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - run: python -B tools/verify_line_endings.py --root . | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - run: python -m pip install -r tools/augment-evals/requirements.txt | |
| - run: python -m unittest discover -s testforge/tests -v | |
| - run: python -m unittest discover -s tools/augment-evals/tests -v | |
| - run: python -m unittest discover -s tests -v | |
| - run: python testforge/scripts/verify_package.py testforge | |
| - run: python tools/augment-evals/augment_eval.py validate testforge | |
| - run: python tools/validate_release_manifests.py |