From a29c4949e486dbbb5b171e041da3580ee7fc71ed Mon Sep 17 00:00:00 2001 From: rudy Date: Mon, 10 Oct 2022 16:16:21 +0200 Subject: [PATCH] ci: do everything in --release to avoid 2x compilations --- .github/workflows/optimizer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/optimizer.yml b/.github/workflows/optimizer.yml index 958aa6818..cfb554287 100644 --- a/.github/workflows/optimizer.yml +++ b/.github/workflows/optimizer.yml @@ -27,10 +27,10 @@ jobs: run: cargo fmt --check - name: Build - run: cargo build --all-targets + run: cargo build --release --all-targets - name: Lint - run: cargo clippy --all-targets + run: cargo clippy --release --all-targets - name: Tests if: matrix.os == 'ubuntu-20.04'