Create LICENSE #3
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| static-release-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install lightweight dev tools | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install tomli pyyaml ruff pytest | |
| - name: Validate release metadata and syntax | |
| run: | | |
| python scripts/validate_release.py | |
| - name: Ruff syntax-focused check | |
| run: | | |
| ruff check . --select E9,F63,F7,F82 | |
| - name: Static tests | |
| run: | | |
| PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 pytest -q |