feat: seed Lariza feature demonstration

Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities.

Assisted-by: Codex: GPT-5.6
This commit is contained in:
reynold
2026-07-18 20:21:37 +08:00
commit 1aa5b38eb3
5 changed files with 87 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
name: Manual CI demonstration
on:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: lariza-actions-demo
cancel-in-progress: false
jobs:
policy-check:
runs-on: lariza-test
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Validate safe demonstration files
shell: sh
run: ./scripts/check.sh
- name: Show non-secret runner context
shell: sh
run: |
printf 'repository=%s\n' "$GITHUB_REPOSITORY"
printf 'sha=%s\n' "$GITHUB_SHA"
printf 'This workflow performs no deployment or external mutation.\n'