Skip to content

Wire ANAGNORIUM and REGRESSORIUM into repo boundary #31

Wire ANAGNORIUM and REGRESSORIUM into repo boundary

Wire ANAGNORIUM and REGRESSORIUM into repo boundary #31

Workflow file for this run

name: Identity
on:
push:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify README identity (PRIM-002)
shell: bash
run: |
set -euo pipefail
grep -q "^# ARCHICUSTOS$" README.md || { echo "FAIL: title missing"; exit 1; }
grep -q "^Primitive ID: PRIM-002" README.md || { echo "FAIL: PRIM-002 not found"; exit 1; }
grep -q "^Package: @verifrax/archicustos" README.md || { echo "FAIL: package line missing"; exit 1; }
grep -q "^Binary: archicustos" README.md || { echo "FAIL: binary line missing"; exit 1; }
echo "PASS: PRIM-002 identity verified"