# SUPERSEDED by release.yml — CalVer tagging with stable/dev channels. # This workflow is kept for backward compatibility but only runs tests. # Image build and push is handled by release.yml. name: Build & Push (legacy) on: push: branches: [main] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - uses: actions/setup-python@v6 with: python-version: "3.13" - name: Install uv uses: astral-sh/setup-uv@v7 - name: Install dependencies run: uv pip install --system ".[dev]" - name: Run tests run: pytest tests/ -v --tb=short env: TESTING: "1"