From ffcfb8bee50d1287a37a9fe6ea7b3c450caebdaa Mon Sep 17 00:00:00 2001 From: tottoto Date: Mon, 16 Oct 2023 22:33:13 +0900 Subject: [PATCH] chore(ci): use cargo-hack --no-dev-deps option to check without dev-dependencies (#41) --- .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 639af38..316c321 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -114,11 +114,11 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@nightly + - uses: dtolnay/rust-toolchain@stable - uses: taiki-e/install-action@cargo-hack - - run: cargo hack check --feature-powerset --depth 2 -Z avoid-dev-deps + - run: cargo hack --no-dev-deps check --feature-powerset --depth 2 doc: name: Build docs