From 8ce21e8937827a9b6ad3e155a76a69783b6a7289 Mon Sep 17 00:00:00 2001 From: Adrien Prokopowicz Date: Thu, 28 Mar 2024 17:34:50 +0100 Subject: [PATCH] Fix CI default-features check --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 04dc2e0..d425395 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,7 +24,7 @@ jobs: with: toolchain: stable - name: Build Default - run: cargo build --all --all-features --verbose + run: cargo build --all --verbose - name: Build All Features run: cargo build --all --all-features --verbose - name: Run tests @@ -57,6 +57,6 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: toolchain: stable - components: clippy + components: rustfmt - name: Format run: cargo fmt --all -- --check