Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,17 @@ jobs:
- uses: Swatinem/rust-cache@v2
- run: cargo build -p ctest

docs:
name: Ensure docs build
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@master
- name: Install Rust
run: rustup update nightly --no-self-update && rustup default nightly
- uses: Swatinem/rust-cache@v2
- run: cargo doc --workspace --no-deps

# One job that "summarizes" the success state of this pipeline. This can then be added to branch
# protection, rather than having to add each job separately.
success:
Expand All @@ -242,6 +253,7 @@ jobs:
- test_tier2_vm
- verify_build
- ctest_msrv
- docs
# Github branch protection is exceedingly silly and treats "jobs skipped because a dependency
# failed" as success. So we have to do some contortions to ensure the job fails if any of its
# dependencies fails.
Expand Down
2 changes: 2 additions & 0 deletions ctest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
//!
//! [project]: https://github.com/rust-lang/libc/blob/main/ctest/README.md

// FIXME(ctest): documenting `garando_syntax` overflows otherwise
#![recursion_limit = "256"]
#![deny(missing_docs)]

use std::collections::{HashMap, HashSet};
Expand Down
Loading