-
Notifications
You must be signed in to change notification settings - Fork 5
86 lines (82 loc) · 2.36 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install rustc and clippy nightly
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: cargo, rustc, clippy, rustfmt
- name: Install Just
uses: taiki-e/install-action@v2
with:
tool: just
- name: "Test: Async"
run: just async-tests
timeout-minutes: 10
- name: "Test: Tokio-Uring"
run: just tokio-uring-tests
- name: "Test: Monoio"
run: just monoio-tests
- name: "Tests: Sync"
run: just sync-tests
timeout-minutes: 10
- name: "Tests: No compression"
run: just no-compression-tests
timeout-minutes: 10
- name: "Tests: Wisckey"
run: just wisckey-tests
- name: "Tests: Wisckey with no compression"
run: just wisckey-no-compression-tests
timeout-minutes: 10
- name: "Tests: Sync Wisckey"
run: just wisckey-sync-tests
- name: "Test: Wisckey and Tokio-Uring"
run: just tokio-uring-wisckey-tests
- name: "Test: Wisckey and Monoio"
run: just monoio-wisckey-tests
timeout-minutes: 10
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install rustc and clippy nightly
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
components: cargo, rustc, clippy, rustfmt
- name: Install Just
uses: taiki-e/install-action@v2
with:
tool: just
- name: "Lint Checks: Tokio (with sync FS)"
run: just async-lint
- name: "Lint Checks: Tokio-Uring"
run: just tokio-uring-lint
- name: "Lint Checks: Monoio "
run: just monoio-lint
- name: "Lint Checks: Synchronous API"
run: just sync-lint
- name: "Lint Checks: Wisckey"
run: just wisckey-lint
- name: "Lint Checks: Wisckey with no comrpession"
run: just wisckey-lint
- name: "Lint Checks: Wisckey and Tokio-Uring"
run: just tokio-uring-wisckey-lint
- name: "Lint Checks: Wisckey and Monoio"
run: just monoio-wisckey-lint
- name: "Formatting Checks"
run: just check-formatting
- name: Check for unused dependencies
run: |
cargo install cargo-machete
cargo machete