-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (100 loc) · 2.82 KB
/
checks.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
on:
push:
paths-ignore:
- ".vscode/**"
- ".idea/**"
jobs:
cargo-deny:
name: Validate licenses
runs-on: ubuntu-22.04
strategy:
matrix:
checks:
- bans licenses sources
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}
format:
name: Validate formatting
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Install Rustup
with:
command: install-rustup
toolchain: nightly
profile: default
default: true
- uses: FrancisRussell/[email protected]
name: Cargo fmt
with:
command: cargo fmt
args: --all -- --check
toolchain: nightly
annotations: true
- uses: FrancisRussell/[email protected]
name: Install Cargo Sort
with:
command: cargo install
args: cargo-sort
toolchain: nightly
annotations: true
- uses: FrancisRussell/[email protected]
name: Check that `Cargo.toml` is sorted
with:
command: cargo sort
args: -wgc
toolchain: nightly
annotations: true
clippy:
name: Lint with Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Install Rustup
with:
command: install-rustup
toolchain: nightly
profile: default
default: true
- uses: FrancisRussell/[email protected]
name: Cargo clippy
with:
command: cargo clippy
toolchain: nightly
args: --workspace --all-features -- -D clippy::manual_let_else -D clippy::unwrap_used
annotations: true
tests:
name: Unit, integration and doc tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Install Rustup
with:
command: install-rustup
toolchain: nightly
profile: default
default: true
- uses: taiki-e/install-action@v2
with:
tool: wasmtime
- uses: FrancisRussell/[email protected]
name: Install Cargo Wasi
with:
command: cargo install
args: cargo-wasi
toolchain: nightly
annotations: true
- uses: FrancisRussell/[email protected]
name: Cargo wasi test
with:
command: cargo wasi
toolchain: nightly
args: test --workspace --all-targets
annotations: true