-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (64 loc) · 2.08 KB
/
lint.yaml
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
# SPDX-FileCopyrightText: © 2023 Foundation Devices, Inc. <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later
name: Lint
on: [push]
jobs:
is-reuse-compliant:
name: Is REUSE compliant?
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: fsfe/reuse-action@v2
is-the-code-compilable:
name: Is the code compilable?
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.77
- run: cargo check
# The foundation-ffi crate won't compile for x86_64 targets because it
# requires a nightly Rust compiler for defining a global allocator and
# the exception handler.
#
# The stratum-v1 crate won't compile with all features enabled because
# if has 2 mutualy exclusive features: defmt and log.
#
# So, disable them for now.
- run: cargo check --no-default-features --workspace --exclude foundation-ffi
- run: cargo check --all-features --workspace --exclude stratum-v1
is-the-code-formatted:
name: Is the code formatted?
needs: [is-the-code-compilable]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.77
components: rustfmt
- run: cargo fmt --all -- --check
clippy-lints-pass:
name: Clippy lints pass?
needs: [is-the-code-compilable]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.77
components: clippy
- run: cargo clippy
tests-pass:
name: Tests pass?
needs: [is-the-code-compilable]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rust-toolchain
with:
toolchain: 1.77
- run: cargo test
- run: cargo test --no-default-features --workspace --exclude foundation-ffi
- run: cargo test --all-features --workspace --exclude stratum-v1