We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2ae628 commit c91d672Copy full SHA for c91d672
.github/workflows/rust.yml
@@ -158,8 +158,13 @@ jobs:
158
echo "ADBC_DRIVER_MANAGER_TEST_LIB=${{ github.workspace }}/local/bin/adbc_driver_sqlite.dll" >> "$GITHUB_ENV"
159
- name: Set search dir for Snowflake Go lib
160
run: echo "ADBC_SNOWFLAKE_GO_LIB_DIR=${{ github.workspace }}/local/lib" >> "$GITHUB_ENV"
161
+ - name: Clippy
162
+ if: runner.os != 'Linux' && ! matrix.minimal-versions
163
+ working-directory: rust
164
+ run: |
165
+ cargo clippy --workspace --all-targets --all-features --locked -- -Dwarnings
166
- name: Clippy (nightly)
- if: ${{ ! matrix.minimal-versions }}
167
+ if: runner.os == 'Linux' && ! matrix.minimal-versions
168
working-directory: rust
169
run: |
170
rustup toolchain install nightly
0 commit comments