From 6c715cd4397f85e03e9537336fd4fdd4f3d94aba Mon Sep 17 00:00:00 2001 From: Laurenz Stampfl <47084093+LaurenzV@users.noreply.github.com> Date: Wed, 26 Jun 2024 22:05:17 +0200 Subject: [PATCH] Don't run CI tests in release mode (#77) --- .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 94787d86..764b9a5b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,11 +30,11 @@ jobs: mv ./pdfium-linux-x64/lib/libpdfium.so ./tests/pdfium - name: Build svg2pdf - run: cargo build --all --release + run: cargo build --all - name: Run tests id: tests - run: cargo test --release --workspace + run: cargo test --workspace - name: Upload artifacts if: failure()