Add synthetic fixtures and proposed policy contracts for safely demonstrating future Lariza capabilities. Assisted-by: Codex: GPT-5.6
28 lines
628 B
YAML
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'
|