-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontributor-dry-run-monthly.yml
More file actions
36 lines (35 loc) · 1.09 KB
/
Copy pathcontributor-dry-run-monthly.yml
File metadata and controls
36 lines (35 loc) · 1.09 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
# Monthly contributor dry-run (optional; cost-aware). SPEC Milestone 5.
name: Contributor dry-run (monthly)
on:
schedule:
- cron: "0 6 1 * *"
workflow_dispatch:
jobs:
dry-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: "pnpm"
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Install Python deps
run: uv sync --all-packages
- name: Install portal deps
run: pnpm --dir portal install --frozen-lockfile
- name: Validate corpus
run: uv run --project pipeline python -m sm_pipeline.cli validate-all
- name: Pipeline tests
run: uv run --project pipeline pytest
- name: Kernel tests
run: uv run --project kernels/adsorption pytest
- name: Lean build
run: lake build
- name: Portal build
run: pnpm --dir portal build
- name: Benchmark regression
run: uv run --project pipeline python -m sm_pipeline.cli benchmark