-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (31 loc) · 1.14 KB
/
Copy pathcorpus-validation.yml
File metadata and controls
42 lines (31 loc) · 1.14 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: corpus-validation
on:
pull_request:
push:
branches: [main]
jobs:
validate-corpus:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout pcs-core (canonical PCS schemas)
uses: actions/checkout@v4
with:
repository: SentinelOps-CI/pcs-core
path: pcs-core
continue-on-error: true
- uses: astral-sh/setup-uv@v4
- name: Install Python deps
run: uv sync --all-packages
- name: Check schema migration notes (Gate 2)
run: uv run python scripts/check_schema_migration.py --base main --head HEAD
- name: Validate schemas and manifests
run: uv run --project pipeline python -m sm_pipeline.cli validate-all
- name: Run pipeline tests
run: uv run --project pipeline pytest
- name: Run PCS contract tests
run: uv run --project pipeline pytest ../tests/pcs
- name: Run kernel tests (numeric witness)
run: uv run --project kernels/adsorption pytest
- name: Run benchmark and regression check (Gate 6)
run: uv run --project pipeline python -m sm_pipeline.cli benchmark