-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (22 loc) · 751 Bytes
/
Copy pathci.yml
File metadata and controls
28 lines (22 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: CI
# Structural validation only — no API calls, no secrets required.
# The live eval suite (evals/run.py) needs the claude CLI and is run by
# maintainers; this workflow guards the regressions that can be caught
# statically: rubric weight sums, JSON validity, fixture integrity.
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Compile eval scripts
run: python -m py_compile evals/run.py evals/behavioral.py evals/validate.py
- name: Validate rubric, JSON, and fixtures
run: python evals/validate.py