From f8cfd9cee78c543e43c97ac0b1c0117d7ec8db4a Mon Sep 17 00:00:00 2001 From: Spencer Ferris <3319370+spencewenski@users.noreply.github.com> Date: Fri, 29 Mar 2024 15:23:43 -0700 Subject: [PATCH] Remove `--no-dev-deps` where it can't be used in github ci workflow --- .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 8db7e630..a40a1a0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,11 +17,11 @@ jobs: - uses: actions/checkout@v4 - uses: taiki-e/install-action@cargo-hack - name: Test - run: cargo hack test --no-fail-fast --feature-powerset --no-dev-deps --workspace + run: cargo hack test --no-fail-fast --feature-powerset --workspace - name: Check run: cargo hack check --feature-powerset --no-dev-deps --workspace - name: Clippy - run: cargo hack clippy --workspace --all-targets --feature-powerset --no-dev-deps -- -D warnings + run: cargo hack clippy --workspace --all-targets --feature-powerset -- -D warnings check_formatting: name: Formatting