From abf43e7c7e0059095375d4611477ec5fbb962153 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Wed, 11 Dec 2024 19:57:19 +0100 Subject: [PATCH] add `--features all` to github workflows --- .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 fa323f9..61fef75 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -28,7 +28,7 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: nightly - - run: cargo test + - run: cargo test --features all clippy: @@ -42,4 +42,4 @@ jobs: with: toolchain: nightly components: clippy - - run: cargo clippy --tests -- -Dclippy::all + - run: cargo clippy --features all --tests -- -Dclippy::all