fix network_helpers_sv2
import on mining_pool
mod
#248
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
name: Lockfiles | |
# Trigger the workflow on push or pull request events for the main branch | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build with locked dependencies | |
run: | | |
cargo build --manifest-path=roles/Cargo.toml --locked | |
cargo build --manifest-path=utils/Cargo.toml --locked |