From f0de501cabec052256d56c8e53ad69e06267a781 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 30 Sep 2025 11:40:37 +0200 Subject: [PATCH] Run cargo doc in CI Signed-off-by: Alyssa Ross --- .buildkite/test_description.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.buildkite/test_description.json b/.buildkite/test_description.json index d4beb38..1708719 100644 --- a/.buildkite/test_description.json +++ b/.buildkite/test_description.json @@ -21,6 +21,10 @@ "test_name": "style", "command": "cargo fmt --all -- --check --config format_code_in_doc_comments=true" }, + { + "test_name": "doc", + "command": "RUSTDOCFLAGS=\"-D warnings\" cargo doc --workspace --all-features --no-deps" + }, { "test_name": "unittests-gnu", "command": "cargo test --all-features --workspace",