File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 99env :
1010 CARGO_TERM_COLOR : always
1111 RUSTFLAGS : -Dwarnings
12- RUSTDOCFLAGS : -Dwarnings
1312 RUST_BACKTRACE : 1
1413 # note: MSRV now tracked in `rust-toolchain.toml`
1514
@@ -54,14 +53,15 @@ jobs:
5453 docs :
5554 needs : build
5655 runs-on : ubuntu-latest
57- env :
58- RUSTDOCFLAGS : -Dwarnings --cfg docsrs
5956 steps :
6057 - uses : actions/checkout@v4
6158 - run : rustup toolchain install nightly
6259 - run : rustup override set nightly
6360 - run : rustup show active-toolchain -v
64- - run : cargo doc --all-features
61+ # Serde 1.0.227 fails to build with `--cfg docsrs`, only pass it to our own packages
62+ - run : cargo rustdoc -p clickhouse-derive -- -D warnings --cfg docsrs
63+ - run : cargo rustdoc -p clickhouse-types -- -D warnings --cfg docsrs
64+ - run : cargo rustdoc -p clickhouse -- -D warnings --cfg docsrs
6565
6666 test :
6767 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments