Skip to content

Commit

Permalink
add roles-lockfile.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
plebhash committed Aug 15, 2024
1 parent a090844 commit 33faa5d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/lockfiles.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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=benches/Cargo.toml --locked
cargo build --manifest-path=roles/Cargo.toml --locked
cargo build --manifest-path=utils/Cargo.toml --locked

0 comments on commit 33faa5d

Please sign in to comment.