-
Notifications
You must be signed in to change notification settings - Fork 4
52 lines (47 loc) · 1.52 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
name: Lint
on: [push, pull_request]
jobs:
clippy-rustdoc:
name: Clippy + Rustdoc
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
runs-on: ubuntu-latest
steps:
- name: Update Rust
run: |
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade
rustup default ${{ matrix.channel }}
- name: Checkout
uses: actions/checkout@v4
- 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 }}