Skip to content

feat: add RAGeval (RAG evaluation framework) #439

feat: add RAGeval (RAG evaluation framework)

feat: add RAGeval (RAG evaluation framework) #439

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install dependencies
run: uv sync --group build --locked
- name: Run tests
run: make test
- name: Build website
run: make build