Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- Add OMNL/CBK Indonesia submission and audit binder docs, manifests, attestations - Add scripts/omnl transaction-package pipeline, LEI/PvP helpers, jq/lib fixtures - Update entity master data, MASTER_INDEX, TODOS, dbis-rail docs and rulebook - Add proof_package/regulatory skeleton and transaction package zip + snapshot JSON - validate-omnl-rail workflow, forge-verification-proxy tweak, .gitignore hygiene - Bump smom-dbis-138 (cronos verify docs/scripts) and explorer-monorepo (SPA + env report) Made-with: Cursor
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
# Validate OMNL operator rail: .gitignore, resolve_ids pattern, shellcheck on scripts/omnl.
|
|
name: Validate OMNL Rail
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'scripts/omnl/**'
|
|
- 'docs/04-configuration/mifos-omnl-central-bank/**'
|
|
- '.gitignore'
|
|
- '.github/workflows/validate-omnl-rail.yml'
|
|
push:
|
|
branches: [master]
|
|
paths:
|
|
- 'scripts/omnl/**'
|
|
- 'docs/04-configuration/mifos-omnl-central-bank/**'
|
|
- '.github/workflows/validate-omnl-rail.yml'
|
|
|
|
jobs:
|
|
validate-omnl-rail:
|
|
name: OMNL rail checks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: .gitignore and resolve_ids
|
|
run: bash scripts/omnl/validate-rail.sh
|
|
|
|
- name: Transaction package CI smoke (fast ledger fixture)
|
|
run: bash scripts/omnl/run-transaction-package-ci-smoke.sh
|
|
|
|
- name: Shellcheck (optional)
|
|
run: |
|
|
if command -v shellcheck >/dev/null 2>&1; then
|
|
shellcheck -x scripts/omnl/*.sh || true
|
|
else
|
|
echo "Shellcheck not installed; skipping."
|
|
fi
|