refactor(tui): clean up orphaned footers from view pages after migrat… #203
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| python: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install | |
| run: | | |
| python -m pip install -U pip | |
| python -m pip install -e ".[dev]" | |
| - name: Verify version consistency | |
| run: python scripts/verify_version.py | |
| - name: Compile | |
| run: python -m compileall -q src/opensmi | |
| - name: Unit tests | |
| run: python -m unittest -v | |
| tui: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: "1.3.5" | |
| - name: Install TUI deps | |
| run: cd tui && bun install --frozen-lockfile | |
| - name: Typecheck | |
| run: cd tui && bun run tsc --noEmit |