Skip to content

Commit bf27924

Browse files
committed
add roles-lockfile.yaml
1 parent 742dfd1 commit bf27924

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/roles-lockfile.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Roles Lockfile
2+
3+
# Trigger the workflow on push or pull request events for the dev and main branches
4+
on:
5+
push:
6+
branches:
7+
- dev
8+
- main
9+
pull_request:
10+
branches:
11+
- dev
12+
- main
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
21+
- name: Install Rust
22+
uses: actions-rs/toolchain@v1
23+
with:
24+
toolchain: stable
25+
override: true
26+
27+
- name: Build with locked dependencies
28+
run: cargo build --manifest-path=roles/Cargo.toml --locked

0 commit comments

Comments
 (0)