-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (55 loc) · 1.67 KB
/
lint.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
name: Lint
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
clippy-rustdoc:
name: Clippy & Rustdoc
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- channel: stable
features: ""
- channel: stable
features: --features safe
- channel: nightly
features: --features nightly
- channel: stable
features: --features zeroize
- channel: stable
features: --features zeroize-on-drop
- channel: nightly
features: --features safe,nightly
- channel: stable
features: --features safe,zeroize
- channel: stable
features: --features safe,zeroize-on-drop
- channel: nightly
features: --features nightly,zeroize
- channel: nightly
features: --features nightly,zeroize-on-drop
- channel: nightly
features: --all-features
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade
rustup default ${{ matrix.channel }}
- name: Run Clippy
run:
cargo clippy --all-targets --workspace ${{ matrix.features }} -- -D warnings
- name: Run Rustdoc
env:
RUSTDOCFLAGS: -D warnings
run:
cargo doc --no-deps --document-private-items --workspace ${{ matrix.features }}