Skip to content

Commit 73e819a

Browse files
author
Daniel Lyne
committed
Correct CI
1 parent 74d05ca commit 73e819a

File tree

2 files changed

+78
-2
lines changed

2 files changed

+78
-2
lines changed

.github/workflows/lint.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,17 @@ jobs:
4646
args: --manifest-path omniqueue/Cargo.toml --all -- --check
4747

4848
- 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
5050

5151
- name: Run tests
5252
uses: actions-rs/cargo@v1
53+
env:
54+
AWS_DEFAULT_REGION: localhost
55+
AWS_ACCESS_KEY_ID: x
56+
AWS_SECRET_ACCESS_KEY: x
5357
with:
5458
command: test
5559
args: --manifest-path omniqueue/Cargo.toml --all --all-features
5660

5761
- name: Stop test dependencies
58-
run: docker-coompose -f "./testing-docker-coompose.yml" down
62+
run: docker-compose -f "./testing-docker-compose.yml" down

deny.toml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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+

0 commit comments

Comments
 (0)