From 63bb9afeb96f6e97f7b5361893d5a107b6628a02 Mon Sep 17 00:00:00 2001 From: armfazh Date: Sat, 30 Sep 2023 20:12:54 -0700 Subject: [PATCH] rust: ensure generated files pass clippy linter. --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a2d360e7ca..cc67d98730 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -23,6 +23,8 @@ jobs: - uses: actions/checkout@v4 - name: cargo build run: cargo build --verbose + - name: cargo clippy + run: cargo clippy -- -D warnings - name: cargo test run: cargo test --verbose - name: curve25519-dalek test