Skip to content

Commit 4ebe634

Browse files
committed
[CI] Lint Windows target
1 parent 6655649 commit 4ebe634

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/lint.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77

88
jobs:
99
lint:
10+
strategy:
11+
matrix:
12+
target: [x86_64-unknown-linux-gnu, x86_64-pc-windows-gnu]
1013
runs-on: ubuntu-latest
1114

1215
steps:
@@ -17,7 +20,7 @@ jobs:
1720
cargo fmt --check -- --color=always
1821
cargo fmt --check --manifest-path fuzz/Cargo.toml
1922
- run: |
20-
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 }}
2124
cargo clippy --manifest-path fuzz/Cargo.toml --color=always -- -D warnings
2225
env:
2326
RUSTFLAGS: "-Dwarnings"

0 commit comments

Comments
 (0)