Skip to content

Update Bencher CLI usage #478

Update Bencher CLI usage

Update Bencher CLI usage #478

Workflow file for this run

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