Add extranonce_manager module in channels_sv2
#4023
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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| name: MSRV 1.75 Check | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@v1.2.0 | |
| - name: Install Rust (1.75) | |
| uses: dtolnay/rust-toolchain@1.75 | |
| - name: Build Workspace | |
| run: cargo build | |
| # also check test compilation without running tests | |
| - name: Check Test Compilation for Workspace | |
| run: cargo test --no-run |