This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 0850784b9 ci: install clippy in Rust workflow (#3495)
0850784b9 is described below
commit 0850784b90ef1f687aeb7bbea8bfac00e030196a
Author: Matthijs Brobbel <[email protected]>
AuthorDate: Wed Oct 1 14:40:07 2025 +0200
ci: install clippy in Rust workflow (#3495)
Fixing
https://github.com/apache/arrow-adbc/actions/runs/18102479553/job/51508730862?pr=3493#step:19:13
---
.github/workflows/rust.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index df848fa87..6e09fd395 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -163,6 +163,7 @@ jobs:
if: runner.os != 'Linux' && ! matrix.minimal-versions
working-directory: rust
run: |
+ rustup component add clippy
cargo clippy --workspace --all-targets --all-features --locked --
-Dwarnings
- name: Clippy (nightly)
if: runner.os == 'Linux' && ! matrix.minimal-versions