From ee0ac6389bbfbb2253f0f5d2c758530c8c8c60a3 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Mon, 2 Dec 2024 21:15:26 +0100 Subject: [PATCH] ci: Also run cargo check without all-features --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 939cc83009..ab63e5b162 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,8 +37,10 @@ jobs: run: cargo fmt --all -- --check - name: Run clippy run: scripts/clippy.sh - - name: Check + - name: Check with all features run: cargo check --workspace --all-targets --all-features + - name: Check with only default features + run: cargo check --all-targets npm_constants: name: Check if node constants are up to date