From 647bf9f3bc44d0bc392097721e6dc2d4aacf2570 Mon Sep 17 00:00:00 2001 From: Philip Tricca Date: Tue, 8 Aug 2023 12:02:39 -0700 Subject: [PATCH] CI: Remove `--all-features` when running cargo clippy & doc. Including `--all-features` builds const-oid with the `arbitrary` feature which has dependencies incompatible with the current MSRV. --- .github/workflows/workspace.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workspace.yml b/.github/workflows/workspace.yml index afbbf1304..deaa1bd18 100644 --- a/.github/workflows/workspace.yml +++ b/.github/workflows/workspace.yml @@ -25,7 +25,7 @@ jobs: components: clippy override: true profile: minimal - - run: cargo clippy --all-features + - run: cargo clippy doc: runs-on: ubuntu-latest @@ -37,7 +37,7 @@ jobs: toolchain: stable override: true profile: minimal - - run: cargo doc --workspace --all-features + - run: cargo doc --workspace rustfmt: runs-on: ubuntu-latest