add fixtures for ts2 / ts3 and ts1 new baselines #28
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: test | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # NOTE: the editable `../ibl-benchmark` dependency lives outside this repo. | |
| # CI will fail at `uv sync` until it is published, vendored, or added as a submodule. | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Sync dependencies | |
| run: uv sync | |
| - name: Run tests | |
| run: uv run pytest |