-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (50 loc) · 1.44 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
name: CI
on:
push:
pull_request:
jobs:
clippy:
name: Clippy
strategy:
matrix:
arch: [x86_64, aarch64, riscv64gc]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.arch }}-unknown-linux-gnu
components: clippy
- name: Clippy
run: |
cargo clippy --target ${{ matrix.arch }}-unknown-linux-gnu
cargo clippy --features loader --target ${{ matrix.arch }}-unknown-linux-gnu
cargo clippy --features kernel --target ${{ matrix.arch }}-unknown-linux-gnu
cargo clippy --all-features --target ${{ matrix.arch }}-unknown-linux-gnu
env:
RUSTFLAGS: -Dwarnings
doc:
name: Check documentation
strategy:
matrix:
arch: [x86_64, aarch64, riscv64gc]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.arch }}-unknown-linux-gnu
- name: Check documentation
run: cargo doc --all-features --target ${{ matrix.arch }}-unknown-linux-gnu
env:
RUSTDOCFLAGS: -Dwarnings
fmt:
name: Check format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: Check format
run: cargo fmt -- --check