From fa46f2a78c064b4adf69ae27c3e310512c7b0dbc Mon Sep 17 00:00:00 2001 From: Jay Gowdy Date: Mon, 1 Jun 2026 09:37:20 -0700 Subject: [PATCH] ci: lint docs with pkce-auth feature enabled Run cargo doc twice in the Docs step so that feature-gated items are included in the doc-warning check. The Doc Tests step already does this; the doc-build step did not. --- .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 da19be3..047c350 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: run: cargo test --all-targets && cargo test --all-targets --features pkce-auth - name: Docs - run: RUSTDOCFLAGS='-D warnings' cargo doc --no-deps + run: RUSTDOCFLAGS='-D warnings' cargo doc --no-deps && RUSTDOCFLAGS='-D warnings' cargo doc --no-deps --features pkce-auth - name: Doc Tests run: cargo test --doc && cargo test --doc --features pkce-auth