From 1abc6ddf305c0602a36e8401fec274f4d268c409 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Tue, 19 Jul 2022 22:26:49 +0200 Subject: [PATCH] Compile Cargo hack using debug profile The performance of it doesn't really matter much. --- .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 69534c8e..a5f0142c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: toolchain: stable override: true - name: Install Cargo-hack - run: cargo install cargo-hack + run: cargo install --debug cargo-hack - name: Check all features run: cargo hack check --feature-powerset - name: Tests @@ -102,6 +102,6 @@ jobs: - name: Install all targets run: make install_targets - name: Install Cargo-hack - run: cargo install cargo-hack + run: cargo install --debug cargo-hack - name: Check all targets run: make check_all_targets