We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6823d31 commit 6b54985Copy full SHA for 6b54985
1 file changed
.github/workflows/library_rust_tests.yml
@@ -65,7 +65,7 @@ jobs:
65
- name: Setup Rust Toolchain for GitHub CI
66
uses: actions-rust-lang/setup-rust-toolchain@v1
67
with:
68
- components: rustfmt
+ components: rustfmt, clippy
69
70
- name: Setup Dafny
71
uses: ./submodules/MaterialProviders/.github/actions/setup_dafny/
@@ -148,3 +148,11 @@ jobs:
148
run: |
149
cargo run --release --example main
150
cargo test --release --example main
151
+
152
+ - name: Run clippy
153
+ if: ${{ matrix.library == 'DynamoDbEncryption' }}
154
+ working-directory: ${{ matrix.library }}/runtimes/rust
155
+ shell: bash
156
+ run: |
157
+ cargo clippy
158
+ cargo clippy --example main
0 commit comments