From b94e11fe7750a3bf5e062a19e3e7d4db7909b7d4 Mon Sep 17 00:00:00 2001 From: Kriskras99 Date: Wed, 9 Sep 2026 15:16:08 +0200 Subject: [PATCH] fix: Build docs with `--all-features` in CI --- .github/workflows/test-lang-rust-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-lang-rust-ci.yml b/.github/workflows/test-lang-rust-ci.yml index 9987c657..780e1019 100644 --- a/.github/workflows/test-lang-rust-ci.yml +++ b/.github/workflows/test-lang-rust-ci.yml @@ -113,7 +113,7 @@ jobs: if: matrix.rust == 'nightly' && matrix.runner.target == 'x86_64-unknown-linux-gnu' env: RUSTDOCFLAGS: --cfg docsrs -Dwarnings - run: cargo doc --lib --no-deps --document-private-items --features derive + run: cargo doc --lib --no-deps --document-private-items --all-features - name: Rust Format if: matrix.runner.target != 'wasm32-unknown-unknown'