From 52514e406bb649dadd8ef022722e74c7f050a0d4 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 4 Dec 2024 14:15:41 +0000 Subject: [PATCH] don't only run --lib tests --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 5676351..1ba9a9c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -51,7 +51,7 @@ jobs: cargo clippy --examples -- -D warnings - name: Run unit tests (debug) - run: cargo test --lib --features "mpi,strict" + run: cargo test --features "mpi,strict" - name: Run tests (release) run: cargo test --examples --release --features "mpi,strict" - name: Run examples