Merge luisschwab/bdk-floresta#153: Bump cargo-rbmt to v0.5.0
#118
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Integration | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RBMT_LOG_LEVEL: verbose | |
| RUST_BACKTRACE: 1 | |
| jobs: | |
| integration: | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: Regtest Client | |
| example: client_regtest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Rust Cache | |
| uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1 | |
| with: | |
| cache-on-failure: false | |
| - name: Setup cargo-rbmt | |
| uses: ./.github/actions/setup-rbmt | |
| - name: Run ${{ matrix.name }} Example | |
| run: cargo rbmt run -- run --release --example ${{ matrix.example }} | |
| timeout-minutes: 10 | |
| env: | |
| BLOCKS: 50 |