Skip to content

Restructure notebooks: replace RAG/CPT with deployment/function-calling #85

Restructure notebooks: replace RAG/CPT with deployment/function-calling

Restructure notebooks: replace RAG/CPT with deployment/function-calling #85

Workflow file for this run

name: Quality Checks
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
notebooks-and-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install web dependencies
working-directory: web
run: npm ci
- name: Build web reader
working-directory: web
run: npm run build