Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- Update submodule references for explorer-monorepo and smom-dbis-138 to latest commits. - Modify CI workflow to include shellcheck installation and enforce error severity for script checks. - Update contract addresses in configuration and documentation to reflect the new canonical addresses for CCIPWETH9Bridge and CCIP Router. - Revise integration test documentation to align with updated contract addresses and deployment statuses. Made-with: Cursor
38 lines
1.1 KiB
YAML
38 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/**'
|
|
- '.gitignore'
|
|
- '.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: Install shellcheck
|
|
run: sudo apt-get update -qq && sudo apt-get install -y shellcheck
|
|
|
|
- name: Shellcheck scripts/omnl (severity error)
|
|
run: shellcheck -S error -x scripts/omnl/*.sh
|