Skip to content

Bump cargo-rbmt to v0.5.0 #116

Bump cargo-rbmt to v0.5.0

Bump cargo-rbmt to v0.5.0 #116

Workflow file for this run

name: Integration
on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
integration:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: Regtest Client Example
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: Run ${{ matrix.example }} example
run: cargo run --release --example ${{ matrix.example }}
timeout-minutes: 10
env:
BLOCKS: 50