Files
reynold 1aa5b38eb3 feat: seed Lariza feature demonstration
Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities.

Assisted-by: Codex: GPT-5.6
2026-07-18 20:21:37 +08:00

28 lines
628 B
YAML

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'