Fix session id capture problem running in the browser #45
Workflow file for this run
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: Unit and Integration Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: "Run Tests" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Clone project repository" | |
| uses: actions/checkout@v6 | |
| - name: "Install uv" | |
| uses: astral-sh/setup-uv@v7 | |
| - name: "Install Python" | |
| run: uv python install 3.13 | |
| - name: "Install dependencies" | |
| run: uv sync | |
| - name: "Run tests" | |
| run: uv run pytest tests/ -v |