Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
9413795
feat(research): add hierarchical inference and prospective power
Tristan-Stoltz-ERC Aug 25, 2026
43d7803
refactor(research): harden hierarchical power planning
Tristan-Stoltz-ERC Aug 25, 2026
e1aa37b
feat(research): expose hierarchical experiment statistics
Tristan-Stoltz-ERC Aug 25, 2026
2b6e024
fix(research): anchor power planning away from DEV winner bias
Tristan-Stoltz-ERC Aug 25, 2026
7e2718d
docs(research): preregister 002A2 hierarchical power contract
Tristan-Stoltz-ERC Aug 25, 2026
f949c00
ci(research): gate 002A2 hierarchical power infrastructure
Tristan-Stoltz-ERC Aug 25, 2026
d7f6f68
fix(test): remove stale loop trial fixture field
Tristan-Stoltz-ERC Aug 25, 2026
42a5567
chore(research): align A2 with current 002A core parent
Tristan-Stoltz-ERC Aug 25, 2026
03d0bd9
chore(research): inherit formatted 002A core in A2
Tristan-Stoltz-ERC Aug 25, 2026
63733e5
feat(research): distinguish nested and crossed nuisance designs
Tristan-Stoltz-ERC Aug 25, 2026
108619a
feat(research): expose nuisance-topology statistics guards
Tristan-Stoltz-ERC Aug 25, 2026
1ed5fd5
ci(research): gate nuisance-topology statistics
Tristan-Stoltz-ERC Aug 25, 2026
ab669e7
docs(research): freeze nuisance-topology boundary for A2
Tristan-Stoltz-ERC Aug 25, 2026
044d908
chore(research): inherit replication-safe claim semantics in A2
Tristan-Stoltz-ERC Aug 25, 2026
268d66a
ci(research): supersede stale A2 validation runs
Tristan-Stoltz-ERC Aug 25, 2026
a41d652
chore(research): sync current 002A core into A2
Tristan-Stoltz-ERC Aug 25, 2026
d76d107
ci(research): defer A2 dedicated gate while draft
Tristan-Stoltz-ERC Aug 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions .github/workflows/sym-arch-002a2-hierarchical-power.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: SYM-ARCH-002A2 Hierarchical Power

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- main
- research/sym-arch-002a-core-v1
paths:
- '.github/workflows/sym-arch-002a2-hierarchical-power.yml'
- 'crates/domains/symthaea-psych-bench/src/experiment/statistics.rs'
- 'crates/domains/symthaea-psych-bench/src/experiment/statistics_design.rs'
- 'crates/domains/symthaea-psych-bench/src/experiment/confirmatory.rs'
- 'crates/domains/symthaea-psych-bench/src/experiment/mod.rs'
- 'crates/domains/symthaea-psych-bench/src/lib.rs'
- 'crates/domains/symthaea-psych-bench/src/harness/analysis.rs'
- 'crates/domains/symthaea-psych-bench/Cargo.toml'
- 'docs/research/SYM_ARCH_002A2_HIERARCHICAL_POWER_V1.md'
- 'docs/research/SYM_ARCH_002A2_NUISANCE_TOPOLOGY_V1.md'
- 'Cargo.toml'
- 'Cargo.lock'
workflow_dispatch:

concurrency:
# Automatic branch runs supersede stale checks. Deliberate manual validation
# runs are unique and therefore never cancel one another.
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name == 'workflow_dispatch' && github.run_id || 'auto' }}
cancel-in-progress: true

permissions:
contents: read

env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1

jobs:
hierarchical-power:
name: Validate hierarchical statistics and power planning
# Draft stacked PRs cannot merge and should not consume scarce runner capacity.
# Promoting to ready-for-review explicitly triggers this exact gate.
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- uses: actions/checkout@v4

- name: Setup Rust
uses: dtolnay/rust-toolchain@1.96.0
with:
components: rustfmt

- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-sym-arch-002a2-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-sym-arch-002a2-

- name: Check A2 Rust formatting
run: |
rustfmt --edition 2024 --check \
crates/domains/symthaea-psych-bench/src/experiment/statistics.rs \
crates/domains/symthaea-psych-bench/src/experiment/statistics_design.rs \
crates/domains/symthaea-psych-bench/src/lib.rs

- name: Run hierarchical statistics and power tests
run: |
cargo test -p symthaea-psych-bench --lib experiment_statistics:: -- --nocapture
cargo test -p symthaea-psych-bench --lib experiment_statistics_design:: -- --nocapture

- name: Check psych-bench library
run: |
cargo check -p symthaea-psych-bench --lib
Loading