Remove old web code and point to tdom #121
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
| # Simply run pytest inside the docker container (.devcontainer/Docker) on | |
| # any push to any branch | |
| name: Test | |
| on: | |
| push: | |
| branches: | |
| - "*" | |
| workflow_dispatch: # Allows manual triggering of the workflow | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up Python 3.14 | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.14" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Run tests | |
| run: uv run pytest |