Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ jobs:
# - "Grokking_Demo"
# - "Head_Detector_Demo"
# - "Interactive_Neuroscope"
# - "LLaMA"
# - "LLaMA2_GPU_Quantized" # Requires quantization libs + too slow for CI timeout
- "LLaMA"
- "LLaMA2_GPU_Quantized" # Requires quantization libs + too slow for CI timeout
- "Main_Demo"
# - "No_Position_Experiment"
- "Othello_GPT"
Expand Down Expand Up @@ -267,15 +267,22 @@ jobs:
- name: Install dependencies
run: |
uv lock --check
uv sync
uv sync --group quantization
- name: Install pandoc
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: pandoc
version: 1.0
- name: Authenticate HuggingFace
if: env.HF_TOKEN != ''
run: uv run python -c "import os; from huggingface_hub import login; login(token=os.environ['HF_TOKEN'])"
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
- name: Check Notebook Output Consistency
# Note: currently only checks notebooks we have specifically setup for this
run: pytest --nbval-sanitize-with demos/doc_sanitize.cfg demos/${{ matrix.notebook }}.ipynb
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}


build-docs:
Expand Down
Loading
Loading