File tree Expand file tree Collapse file tree 2 files changed +78
-2
lines changed Expand file tree Collapse file tree 2 files changed +78
-2
lines changed Original file line number Diff line number Diff line change @@ -46,13 +46,17 @@ jobs:
46
46
args : --manifest-path omniqueue/Cargo.toml --all -- --check
47
47
48
48
- name : Start test dependencies
49
- run : docker-coompose -f "./testing-docker-coompose .yml" up -d
49
+ run : docker-compose -f "./testing-docker-compose .yml" up -d
50
50
51
51
- name : Run tests
52
52
uses : actions-rs/cargo@v1
53
+ env :
54
+ AWS_DEFAULT_REGION : localhost
55
+ AWS_ACCESS_KEY_ID : x
56
+ AWS_SECRET_ACCESS_KEY : x
53
57
with :
54
58
command : test
55
59
args : --manifest-path omniqueue/Cargo.toml --all --all-features
56
60
57
61
- name : Stop test dependencies
58
- run : docker-coompose -f "./testing-docker-coompose .yml" down
62
+ run : docker-compose -f "./testing-docker-compose .yml" down
Original file line number Diff line number Diff line change
1
+ targets = [
2
+ { triple = " x86_64-pc-windows-gnu" },
3
+ { triple = " x86_64-unknown-linux-musl" },
4
+ { triple = " x86_64-apple-darwin" },
5
+ { triple = " aarch64-apple-darwin" },
6
+ ]
7
+
8
+ [advisories ]
9
+ db-path = " ~/.cargo/advisory-db"
10
+ db-urls = [" https://github.com/rustsec/advisory-db" ]
11
+ vulnerability = " deny"
12
+ unmaintained = " warn"
13
+ yanked = " deny"
14
+ notice = " warn"
15
+ ignore = []
16
+
17
+ [licenses ]
18
+ unlicensed = " deny"
19
+ allow = [
20
+ " Apache-2.0" ,
21
+ " BSD-2-Clause" ,
22
+ " BSD-3-Clause" ,
23
+ " ISC" ,
24
+ " MIT" ,
25
+ " MPL-2.0" ,
26
+ " OpenSSL" ,
27
+ " Unicode-DFS-2016" ,
28
+ ]
29
+ deny = []
30
+ copyleft = " deny"
31
+ allow-osi-fsf-free = " neither"
32
+ default = " deny"
33
+ confidence-threshold = 0.8
34
+ exceptions = [
35
+ # { allow = ["Zlib"], name = "adler32", version = "*" },
36
+ ]
37
+
38
+ [[licenses .clarify ]]
39
+ name = " ring"
40
+ version = " *"
41
+ expression = " MIT AND ISC AND OpenSSL"
42
+ license-files = [
43
+ { path = " LICENSE" , hash = 0xbd0eed23 }
44
+ ]
45
+
46
+ [[licenses .clarify ]]
47
+ name = " encoding_rs"
48
+ version = " 0.8.30"
49
+ expression = " MIT OR Apache-2.0"
50
+ license-files = [
51
+ { path = " COPYRIGHT" , hash = 0x39f8ad31 }
52
+ ]
53
+
54
+ [licenses .private ]
55
+ ignore = false
56
+ registries = []
57
+
58
+ [bans ]
59
+ multiple-versions = " warn"
60
+ wildcards = " allow"
61
+ highlight = " all"
62
+ allow = []
63
+ deny = []
64
+ skip = []
65
+ skip-tree = []
66
+
67
+ [sources ]
68
+ unknown-registry = " warn"
69
+ unknown-git = " warn"
70
+ allow-registry = [" https://github.com/rust-lang/crates.io-index" ]
71
+ allow-git = []
72
+
You can’t perform that action at this time.
0 commit comments