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
name: CI
on:
push:
branches:
pull_request:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test & lint (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache
uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.os }}
- name: Format
if: runner.os == 'Linux' # formatting is platform-independent
run: cargo fmt --all --check
- name: Clippy (warnings denied)
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test
msrv:
name: MSRV (Rust 1.88)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
# Keep this pin in sync with `rust-version` in Cargo.toml. Compiling on the
# declared minimum guards against accidentally using a std/library or language
# feature newer than 1.88 (behavior is covered by the stable `test` job, so this
# is compile-only).
- name: Install Rust 1.88 (declared MSRV)
uses: dtolnay/rust-toolchain@1.88
- name: Cache
uses: Swatinem/rust-cache@v2
with:
key: msrv
- name: cargo check --all-targets
run: cargo check --all-targets
docs:
name: Docs build (warnings denied)
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -D warnings -D rustdoc::broken-intra-doc-links
steps:
- uses: actions/checkout@v6
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Cache
uses: Swatinem/rust-cache@v2
- name: cargo doc --no-deps
run: cargo doc --no-deps