Add clippy-validation for every possible target

This way, it's not possible anymore to accidentally break code just because CI doesn't try to build it.

Note that this is unrelated to features, which would still need to be specified or built individually
by CI.
This commit is contained in:
Sebastian Thiel 2024-08-08 16:17:50 +02:00
parent c754479cc5
commit 7a0cc9c789
No known key found for this signature in database
GPG Key ID: 9CB5EE7895E8268B

View File

@ -74,6 +74,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: cargo fmt --check --all
- run: cargo check --workspace --all-targets
rust-docs:
needs: changes
@ -149,4 +150,4 @@ jobs:
shared-key: windows-rust-testing
key: ${{ inputs.features }}
- name: "cargo check"
run: cargo check --workspace --bins --examples --features windows
run: cargo check --workspace --all-targets --features windows