-
Notifications
You must be signed in to change notification settings - Fork 5
92 lines (71 loc) · 2.49 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
87
88
89
90
91
92
name: Continuous integration
on: [push, pull_request]
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Cache dependencies & build outputs
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: Check code format
run: cargo fmt --all -- --check
- name: Code lint with default features
run: cargo clippy --all-targets -- -D warnings
- name: Code lint without default features
run: cargo clippy --no-default-features --workspace -- -D warnings
- name: Code lint with all features
run: cargo clippy --no-default-features --workspace --all-features -- -D warnings
- name: Test with default features
run: cargo test --all-features
- name: Test with without default features
run: cargo test --no-default-features
- name: Test with all features
run: cargo test --all-features
build-no-std:
name: Build no_std
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: thumbv6m-none-eabi
- name: Build
run: cargo build --no-default-features --target thumbv6m-none-eabi
build-no-std-serde:
name: Build no_std, but with `serde` feature enabled
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build
# `thumbv6m-none-eabi` can't be used as Serde doesn't compile there.
run: cargo build --no-default-features --features serde
check-lockfile:
name: Make sure the lockfile is up-to-date
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Error if checked-in lockfile is not up-to-date
run: cargo build --locked