- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains - Omit embedded publish git dirs and empty placeholders from index Made-with: Cursor
47 lines
1.5 KiB
YAML
47 lines
1.5 KiB
YAML
# Dry-run PMM soak helpers: export, fund-grid plan, grid + single-wallet quote ticks (read-only RPC).
|
|
name: PMM soak grid smoke
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'scripts/deployment/pmm-soak*.sh'
|
|
- 'scripts/deployment/chain138-pmm*.sh'
|
|
- 'scripts/deployment/pmm-soak-grid-smoke-check.sh'
|
|
- 'scripts/lib/pmm-soak*.sh'
|
|
- 'scripts/lib/pmm-soak-dotenv-override.sh'
|
|
- 'scripts/deployment/pmm-soak-export-wallet-grid.py'
|
|
- 'config/pmm-soak-pools-stable.txt'
|
|
- 'config/pmm-soak-wallet-grid.example.json'
|
|
- '.github/workflows/pmm-soak-grid-smoke.yml'
|
|
push:
|
|
branches: [main, master]
|
|
paths:
|
|
- 'scripts/deployment/pmm-soak*.sh'
|
|
- 'scripts/deployment/chain138-pmm*.sh'
|
|
- 'scripts/deployment/pmm-soak-grid-smoke-check.sh'
|
|
- 'scripts/lib/pmm-soak*.sh'
|
|
- 'scripts/lib/pmm-soak-dotenv-override.sh'
|
|
- 'scripts/deployment/pmm-soak-export-wallet-grid.py'
|
|
- 'config/pmm-soak-pools-stable.txt'
|
|
- 'config/pmm-soak-wallet-grid.example.json'
|
|
- '.github/workflows/pmm-soak-grid-smoke.yml'
|
|
|
|
jobs:
|
|
smoke:
|
|
name: Grid smoke (dry-run, public RPC)
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Foundry (cast)
|
|
uses: foundry-rs/foundry-toolchain@v1
|
|
|
|
- name: Install bc
|
|
run: sudo apt-get update -qq && sudo apt-get install -y bc
|
|
|
|
- name: PMM soak grid smoke
|
|
env:
|
|
CI: "true"
|
|
run: bash scripts/deployment/pmm-soak-grid-smoke-check.sh
|