Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/library_rust_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup Rust Toolchain for GitHub CI
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
components: rustfmt, clippy

- name: Setup Dafny
uses: ./submodules/MaterialProviders/.github/actions/setup_dafny/
Expand Down Expand Up @@ -148,3 +148,11 @@ jobs:
run: |
cargo run --release --example main
cargo test --release --example main

- name: Run clippy
if: ${{ matrix.library == 'DynamoDbEncryption' }}
working-directory: ${{ matrix.library }}/runtimes/rust
shell: bash
run: |
cargo clippy
cargo clippy --example main
Loading