run tests in both debug and release mode

This commit is contained in:
Corwin Kuiper 2021-07-03 22:20:03 +01:00
parent 08eb39a64b
commit 41bd8013f7

View file

@ -38,7 +38,10 @@ jobs:
- name: Run Clippy on agb image converter - name: Run Clippy on agb image converter
working-directory: agb-image-converter working-directory: agb-image-converter
run: cargo clippy --verbose run: cargo clippy --verbose
- name: Run Tests for agb - name: Run Tests for agb in debug mode
working-directory: agb working-directory: agb
run: cargo test --verbose run: cargo test --verbose
- name: Run Tests for agb in release mode
working-directory: agb
run: cargo test --verbose --release