File tree Expand file tree Collapse file tree 3 files changed +31
-21
lines changed Expand file tree Collapse file tree 3 files changed +31
-21
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : deny
2
+
3
+ env :
4
+ RUST_BACKTRACE : 1
5
+
6
+ jobs :
7
+ cargo-deny-advisories :
8
+ name : cargo deny advisories
9
+ runs-on : ubuntu-latest
10
+ continue-on-error : true
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : EmbarkStudios/cargo-deny-action@v1
14
+ with :
15
+ command : check advisories
16
+
17
+ cargo-deny-licenses :
18
+ name : cargo deny bans licenses sources
19
+ runs-on : ubuntu-latest
20
+ steps :
21
+ - uses : actions/checkout@v2
22
+ - uses : EmbarkStudios/cargo-deny-action@v1
23
+ with :
24
+ command : check bans licenses sources
25
+
26
+ on :
27
+ push :
28
+ branches : [staging, trying]
29
+ pull_request :
30
+ branches : [prīmum]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ status = [
10
10
" cargo hack check --all-targets --feature-powerset" ,
11
11
" cargo fmt --check" ,
12
12
" cargo clippy" ,
13
- # "cargo audit ",
13
+ " cargo deny bans licenses sources " ,
14
14
" cargo doc --cfg docsrs" ,
15
15
]
16
16
delete_merged_branches = true
You can’t perform that action at this time.
0 commit comments