Add integration test for auth failure between mining_device
and a pool
#495
Workflow file for this run
This file contains 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: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
name: MSRV 1.75 Check | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: | |
- 1.75.0 # MSRV | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/[email protected] | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- name: Build Benches | |
run: cargo build --manifest-path=benches/Cargo.toml | |
- name: Build Protocols | |
run: cargo build --manifest-path=protocols/Cargo.toml | |
- name: Build Roles | |
run: cargo build --manifest-path=roles/Cargo.toml | |
- name: Build Utils | |
run: cargo build --manifest-path=utils/Cargo.toml |