Skip to content

Refactor exploration to use new strategy approach and deprecate prefix approach #68

Refactor exploration to use new strategy approach and deprecate prefix approach

Refactor exploration to use new strategy approach and deprecate prefix approach #68

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
smoke-tests:
name: Smoke Tests (Round 1)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
- run: uv sync --extra test
- run: uv run pytest tests/test_smoke.py -v
unit-tests:
name: Unit Tests (Round 2)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
- run: uv sync --extra test
- run: uv run pytest tests/ -v --cov=ibrl --cov-report=term-missing --cov-fail-under=75