From 3379ae9e8f8f0bad60159d93fcde2e678e281b13 Mon Sep 17 00:00:00 2001 From: Bas Zalmstra Date: Thu, 28 Sep 2023 15:11:24 +0200 Subject: [PATCH] fix: just write it out --- .github/workflows/rust-compile.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust-compile.yml b/.github/workflows/rust-compile.yml index 2aa78515..0e858352 100644 --- a/.github/workflows/rust-compile.yml +++ b/.github/workflows/rust-compile.yml @@ -23,9 +23,10 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 - run: | - for package in $(cargo metadata --no-deps --format-version=1 | jq -r '.packages[] | .name'); do - cargo rustdoc -p "$package" --all-features --lib -- -D warnings -W unreachable-pub - done + cargo rustdoc -p rattler_installs_package --all-features -- -D warnings -W unreachable-pub + cargo rustdoc -p index --all-features -- -D warnings -W unreachable-pub + cargo rustdoc -p rip_bin --bin rip --all-features -- -D warnings -W unreachable-pub + cargo rustdoc -p rip_bin --lib --all-features -- -D warnings -W unreachable-pub format_and_lint: name: Format and Lint