File tree 4 files changed +32
-2958
lines changed
4 files changed +32
-2958
lines changed Original file line number Diff line number Diff line change
1
+ name : Lockfiles
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 : |
29
+ cargo build --manifest-path=roles/Cargo.toml --locked
30
+ cargo build --manifest-path=utils/Cargo.toml --locked
Original file line number Diff line number Diff line change 1
1
.idea
2
2
* /** /target
3
3
/protocols /guix-example /guix-example.h
4
+ /protocols /Cargo.lock
5
+ /benches /Cargo.lock
4
6
/ignore
5
7
/vendor /ed25519-dalek /target
6
8
/utils /buffer /target
You can’t perform that action at this time.
0 commit comments