name: CI on: push: branches: ["*"] pull_request: branches: ["*"] jobs: quality-checks: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: python-version: "3.14" - name: Install uv uses: astral-sh/setup-uv@v4 with: version: "0.11.1" enable-cache: true - name: Run pre-commit hooks run: uv run pre-commit run --all-files - name: Run type checking with ty run: uv run ty check - name: Run tests with pytest run: uv run pytest