deps(chore): Track companion CI corrections #4334
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: tests | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
| runs-on: ubuntu-latest | |
| env: | |
| UV_PYTHON: ${{ matrix.python-version }} | |
| strategy: | |
| matrix: | |
| python-version: ['3.14'] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v10.0.1 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install native VCS tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install --yes --no-install-recommends git mercurial subversion | |
| git --version | |
| hg --version | |
| svn --version --quiet | |
| svnadmin --version --quiet | |
| - name: Install dependencies | |
| run: uv sync --frozen --all-extras --dev | |
| - name: Print python versions | |
| run: | | |
| python -V | |
| uv run python -V | |
| uv run python -c 'import os, sys; assert ".".join(map(str, sys.version_info[:2])) == os.environ["UV_PYTHON"]' | |
| - name: Lint with ruff check | |
| run: uv run ruff check . | |
| - name: Format with ruff format | |
| run: uv run ruff format . --check | |
| - name: Lint with mypy | |
| run: uv run mypy . | |
| - name: Test with pytest | |
| run: uv run py.test -ra --cov=./ --cov-append --cov-report=xml | |
| env: | |
| COV_CORE_SOURCE: . | |
| COV_CORE_CONFIG: pyproject.toml | |
| COV_CORE_DATAFILE: .coverage.eager | |
| - name: Runtime dependency smoke test | |
| run: uv run --isolated --no-cache --no-dev --no-editable --frozen python scripts/runtime_dep_smoketest.py | |
| - uses: codecov/codecov-action@v7 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| release: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
| permissions: | |
| id-token: write | |
| attestations: write | |
| strategy: | |
| matrix: | |
| python-version: ['3.14'] | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v10.0.1 | |
| with: | |
| enable-cache: true | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: uv sync --all-extras --dev | |
| - name: Build package | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
| run: uv build | |
| - name: Publish package | |
| if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| attestations: true | |
| skip-existing: true |