deps(frontend)(deps-dev): bump typescript from 5.9.3 to 6.0.3 in /frontend #39
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: backend | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: backend-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: pytest (${{ matrix.os }} / py ${{ matrix.python-version }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| python-version: ["3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: pip | |
| cache-dependency-path: pyproject.toml | |
| - name: Install package + dev extras | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install -e ".[dev]" | |
| - name: Install scientific stack (sandbox tests need it) | |
| run: python -m pip install numpy matplotlib | |
| - name: Lint (ruff) | |
| run: ruff check . | |
| - name: Run pytest | |
| run: pytest -v | |
| - name: Offline project smoke test | |
| run: | | |
| python -m halfseed init ci-smoke "Can a harmonic oscillator remain bounded under a small positive frequency shift?" --run-dir .pytest-work/runs | |
| python -m halfseed run ci-smoke --offline --no-latex-gate --no-numerical-tools --max-artifacts 4 --run-dir .pytest-work/runs | |
| python -m halfseed brief ci-smoke --run-dir .pytest-work/runs | |
| test -f .pytest-work/runs/ci-smoke/paper.tex | |
| test -f .pytest-work/runs/ci-smoke/briefings/iteration-001.md |