From f58744e57949ade294d87fc9798502675a2fd4d5 Mon Sep 17 00:00:00 2001 From: dbr Date: Fri, 29 Apr 2022 11:19:34 +1000 Subject: [PATCH] Fix CI --all-features doesn't do as expected, just list all (two) features we want to test --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c141707..6a772f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,8 +67,8 @@ jobs: - name: freetype and docking run: cargo clippy --workspace --all-targets --features freetype,docking - - name: allf eatures - run: cargo clippy --workspace --all-targets --all-features + - name: all features + run: cargo clippy --workspace --all-targets --features docking,freetype test: name: Run tests @@ -142,7 +142,7 @@ jobs: - name: all features if: matrix.os != 'windows-latest' - run: cargo test --workspace --all-targets --all-features + run: cargo test --workspace --all-targets --features docking,freetype - name: doc tests run: cargo test --workspace --doc