From a16b665f4eaa790841fa66877d2af1c194642f68 Mon Sep 17 00:00:00 2001 From: Daniel Porteous Date: Fri, 21 Jun 2024 12:41:55 +0100 Subject: [PATCH] Run Rust tests in CI --- .github/workflows/lint.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 6f2d90d4a..c184c1c7c 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -44,3 +44,6 @@ jobs: - name: Ensure the --no-default-features build passes too run: cargo build --no-default-features working-directory: rust + - name: Ensure tests pass + run: cargo test + working-directory: rust