Skip to content

Commit

Permalink
Run clippy for 32bit targets
Browse files Browse the repository at this point in the history
  • Loading branch information
gtrafimenkov committed Nov 10, 2023
1 parent fe31db9 commit 8a45cdd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
- { name: "cargo test --release", run: "cargo test --verbose --release" }
- { name: "cargo clippy", run: "cargo clippy" }
- { name: "example user", run: "cargo run --example user" }
- { name: "add 32bit target", run: "rustup target add i686-unknown-linux-gnu" }
- { name: "cargo clippy 32bit", run: "cargo clippy --target i686-unknown-linux-gnu" }

crosscompile:
runs-on: ubuntu-latest
Expand All @@ -48,3 +50,5 @@ jobs:
- { name: "cargo test --release", run: "cargo test --verbose --release" }
- { name: "cargo clippy", run: "cargo clippy" }
- { name: "example user", run: "cargo run --example user" }
- { name: "add 32bit target", run: "rustup target add i686-pc-windows-msvc" }
- { name: "cargo clippy 32bit", run: "cargo clippy --target i686-pc-windows-msvc" }

0 comments on commit 8a45cdd

Please sign in to comment.