From 6138268d67b10fbcb98fd48ec6de50ca609767f1 Mon Sep 17 00:00:00 2001 From: Josh Stoik Date: Sat, 4 Feb 2023 20:51:48 -0800 Subject: [PATCH] ci: use --all-features flag --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 612a183..0953577 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -53,9 +53,9 @@ jobs: - name: Clippy run: | cargo clippy --release --target ${{ matrix.target }} - cargo clippy --release --features dynamic-help --target ${{ matrix.target }} + cargo clippy --release --all-features --target ${{ matrix.target }} - name: Tests run: | cargo test --release --target ${{ matrix.target }} - cargo test --release --features dynamic-help --target ${{ matrix.target }} + cargo test --release --all-features --target ${{ matrix.target }}