From b0d153f318d992478d6a10a40b375d21a2fc53b7 Mon Sep 17 00:00:00 2001 From: Jasper den Hertog Date: Tue, 26 Mar 2024 10:24:57 +0100 Subject: [PATCH] Only run --release build and test, to avoid erroring out compiling the doc overflow example --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3cdc3d..2042305 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,5 +34,5 @@ jobs: run: rustup component add clippy - if: matrix.rust == 'stable' run: cargo clippy -- -D warnings - - run: cargo build --verbose ${{ matrix.args }} - - run: cargo test --verbose ${{ matrix.args }} + - run: cargo build --verbose --release ${{ matrix.args }} + - run: cargo test --verbose --release ${{ matrix.args }}