From e919cde22f4c5011e891e47a79b350c95bff5f82 Mon Sep 17 00:00:00 2001 From: Aljoscha Meyer Date: Sat, 20 Jul 2024 18:21:31 +0200 Subject: [PATCH] Activate all features in CI --- .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 644bcee..a60317d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -19,8 +19,8 @@ jobs: - name: Build run: cargo build --verbose - name: Run tests - run: cargo test --verbose + run: cargo test --verbose --all-features - name: Check formatting run: cargo fmt --check - name: Build documentation - run: cargo doc --no-deps + run: cargo doc --no-deps --all-features