From 437404df223fea253632c2010f56a8bbe32018d8 Mon Sep 17 00:00:00 2001 From: Sima Kinsart Date: Fri, 25 Nov 2022 16:38:34 +0600 Subject: [PATCH] Check the CI with no default features --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e8396993..8ddd7e78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,6 +152,13 @@ jobs: command: check args: --examples --features full + # TODO: prolly move it to a separate step? + - name: Check with no default features + uses: actions-rs/cargo@v1 + with: + command: check + args: --no-default-features + clippy: name: Run linter runs-on: ubuntu-latest