Separate lib
code from bin
in mining-device
#167
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 dev and main branches | |
on: | |
push: | |
branches: | |
- dev | |
- main | |
pull_request: | |
branches: | |
- dev | |
- 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 |