We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6655649 commit 4ebe634Copy full SHA for 4ebe634
.github/workflows/lint.yml
@@ -7,6 +7,9 @@ on:
7
8
jobs:
9
lint:
10
+ strategy:
11
+ matrix:
12
+ target: [x86_64-unknown-linux-gnu, x86_64-pc-windows-gnu]
13
runs-on: ubuntu-latest
14
15
steps:
@@ -17,7 +20,7 @@ jobs:
17
20
cargo fmt --check -- --color=always
18
21
cargo fmt --check --manifest-path fuzz/Cargo.toml
19
22
- run: |
- cargo clippy --color=always -- -D warnings -A clippy::manual-non-exhaustive
23
+ cargo clippy --color=always -- -D warnings -A clippy::manual-non-exhaustive --target ${{ matrix.target }}
24
cargo clippy --manifest-path fuzz/Cargo.toml --color=always -- -D warnings
25
env:
26
RUSTFLAGS: "-Dwarnings"
0 commit comments