Skip to content

Refactor byte strings to tokens #59

Refactor byte strings to tokens

Refactor byte strings to tokens #59

Workflow file for this run

name: Docs Preview
on:
pull_request:
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'pyproject.toml'
workflow_dispatch:
jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.5'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ".[docs]" "vllm<=0.8.3"
- name: Build docs
run: mkdocs build --strict