Drop 353 resolution and fix block updating in OffersMessageFlow, replacing it all with bitcoin-payment-instructions 353 resolution
#5973
Workflow file for this run
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: SemVer checks | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| pull_request: | |
| branches-ignore: | |
| - master | |
| jobs: | |
| semver-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Rust stable toolchain | |
| run: | | |
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable | |
| rustup override set stable | |
| - name: Install SemVer Checker | |
| run: cargo install cargo-semver-checks --locked | |
| - name: Check SemVer with all features | |
| run: cargo semver-checks | |
| - name: Check SemVer without any non-default features | |
| run: cargo semver-checks --only-explicit-features |