From 931690d38749136384b94cb95b069196b2162aeb Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 1 Sep 2021 23:54:47 +0100 Subject: [PATCH] fix ci --- .cargo/config.toml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 629fbf09..702b73dc 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -5,7 +5,7 @@ lint = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy: ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture" # just check the library (without dev deps) -ci-check-min = "hack --workspace --no-default-features" +ci-check-min = "hack --workspace check --no-default-features" ci-check-lib = "hack --workspace --feature-powerset --exclude-features io-uring check" ci-check-lib-linux = "hack --workspace --feature-powerset check" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca4686cd..4620893f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,7 +86,7 @@ jobs: uses: actions-rs/cargo@v1 with: { command: ci-check-lib-linux } - name: check lib - if: matrix.target.triple != 'x86_64-pc-windows-gnu' + if: matrix.target.triple == 'x86_64-pc-windows-gnu' uses: actions-rs/cargo@v1 with: { command: ci-check-min }