Skip to content

docs: add fix #12 to grpo-chtc-debugging — markdown fence stripping w… #70

docs: add fix #12 to grpo-chtc-debugging — markdown fence stripping w…

docs: add fix #12 to grpo-chtc-debugging — markdown fence stripping w… #70

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