From 5be4a73e20fd642d9b6145a9185f0136297a5740 Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 4 Dec 2024 14:22:51 +0000 Subject: [PATCH] don't only run --lib tests (#101) --- .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