From 1de5960d47290b89c5a712eddd1b7b3c55dc23ad Mon Sep 17 00:00:00 2001 From: jeasonnow Date: Thu, 3 Aug 2023 16:04:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=9C=A8=20ci-rust-check=20=E7=8E=AF?= =?UTF-8?q?=E8=8A=82=E5=8F=96=E6=B6=88=20cli-build=20features=20=E6=A3=80?= =?UTF-8?q?=E6=B5=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/rust-code-quality-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-code-quality-check.yml b/.github/workflows/rust-code-quality-check.yml index 0236cf7..7af1d38 100644 --- a/.github/workflows/rust-code-quality-check.yml +++ b/.github/workflows/rust-code-quality-check.yml @@ -43,7 +43,7 @@ jobs: packages: libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev gnome-video-effects gnome-video-effects-extra version: 1.0 - name: Run unit & integration tests with nextest - run: cargo hack --feature-powerset nextest run + run: cargo hack --feature-powerset --exclude-features cli-build nextest run # - name: Run documentation tests with cargo test # run: cargo hack --feature-powerset test --doc @@ -70,7 +70,7 @@ jobs: packages: libwebkit2gtk-4.0-dev build-essential curl wget libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev gnome-video-effects gnome-video-effects-extra version: 1.0 - name: Run all-features code quality checks - run: cargo hack --feature-powerset --no-dev-deps clippy + run: cargo hack --feature-powerset --exclude-features cli-build --no-dev-deps clippy - name: Run normal code quality check run: cargo clippy