Skip to content

fix: strip markdown fences in compute_reward — verl rollouts emit the… #69

fix: strip markdown fences in compute_reward — verl rollouts emit the…

fix: strip markdown fences in compute_reward — verl rollouts emit the… #69

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: ruff
run: ruff check src tests scripts
- name: pyright
run: pyright
- name: pytest
run: pytest