Skip to content

Merge remote-tracking branch 'origin/main' into issue-195-path-safety… #790

Merge remote-tracking branch 'origin/main' into issue-195-path-safety…

Merge remote-tracking branch 'origin/main' into issue-195-path-safety… #790

Workflow file for this run

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