From f988a6aea17b820f22aac8dfe3aa8ac74a0a745d Mon Sep 17 00:00:00 2001 From: Josh Holbrook Date: Mon, 20 Dec 2021 18:18:14 -0500 Subject: [PATCH] Try a "cargo clean" to see if it fixes the docs build There's a bug in nightly where the workaround is to run `cargo clean`: https://github.com/rust-lang/rust/issues/91663 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76cb6aa..9845fef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,4 +51,4 @@ jobs: run: cargo fmt --all -- --check - name: docs - run: cargo +nightly doc --no-deps + run: cargo clean && cargo +nightly doc --no-deps