diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index d1879691..fb1a0a58 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -38,7 +38,10 @@ jobs: - name: Run Clippy on agb image converter working-directory: agb-image-converter run: cargo clippy --verbose - - name: Run Tests for agb + - name: Run Tests for agb in debug mode working-directory: agb run: cargo test --verbose + - name: Run Tests for agb in release mode + working-directory: agb + run: cargo test --verbose --release \ No newline at end of file