Merge remote-tracking branch 'origin/main' into issue-195-path-safety… #790
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: Code Check | |
| # Run the workflow on all branches. | |
| on: [push, pull_request] | |
| jobs: | |
| # Run basic code quality checks. | |
| check-code: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Install Poetry | |
| run: pipx install poetry | |
| - name: Configure Poetry (no venv) + install deps | |
| run: | | |
| poetry config virtualenvs.create false | |
| poetry install --no-interaction | |
| - name: Verify generated ownership files | |
| run: poetry run python scripts/sync_ownership.py --check | |
| - uses: pre-commit/action@v3.0.1 |