From b161cbb1758a589118182bbb1e71d78ab874756b Mon Sep 17 00:00:00 2001 From: Laurenz Stampfl <47084093+LaurenzV@users.noreply.github.com> Date: Wed, 21 Aug 2024 19:35:04 +0200 Subject: [PATCH] Don't run tests in release mode --- .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 6c019069..ab2a36c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,10 +130,10 @@ jobs: echo "MUPDF_BIN=$(pwd)/mutool" >> $GITHUB_ENV - name: Build - run: cargo build --release + run: cargo build - name: Run tests - run: cargo test --release + run: cargo test - name: Upload artifacts if: failure()