diff --git a/.github/workflows/rust_linux.yml b/.github/workflows/rust_linux.yml index b235d51e..f2a16fea 100644 --- a/.github/workflows/rust_linux.yml +++ b/.github/workflows/rust_linux.yml @@ -23,6 +23,8 @@ jobs: export MIRIFLAGS="-Zmiri-disable-isolation" - name: Build run: cargo build --all + - name: Build Release + run: cargo build --all --release - name: Run tests Debug run: cargo test --all - name: Run tests Release diff --git a/.github/workflows/rust_macos.yml b/.github/workflows/rust_macos.yml index 1e58d17f..926ae30e 100644 --- a/.github/workflows/rust_macos.yml +++ b/.github/workflows/rust_macos.yml @@ -23,7 +23,9 @@ jobs: export MIRIFLAGS="-Zmiri-disable-isolation" - name: Build run: cargo build --all - - name: Run tests Debug + - name: Build Release + run: cargo build --all --release + - name: Run tests Debug run: cargo test --all - name: Run tests Release run: cargo test --all --release diff --git a/.github/workflows/rust_windows.yml b/.github/workflows/rust_windows.yml index 1a30e09b..9cbe9176 100644 --- a/.github/workflows/rust_windows.yml +++ b/.github/workflows/rust_windows.yml @@ -23,6 +23,8 @@ jobs: setx MIRIFLAGS "-Zmiri-disable-isolation" - name: Build run: cargo build --all + - name: Build Release + run: cargo build --all --release - name: Run tests Debug run: cargo test --all - name: Run tests Release