Skip to content

Commit

Permalink
👷 CI: Check doc build for individual packages separately
Browse files Browse the repository at this point in the history
Currently we end up with a strange error of enabling all features in the
root workspace. I don't know what really causes it (could be a Cargo
bug) but I also don't see the need to enable all features in the root so
I don't want to bother with that.
  • Loading branch information
zeenix committed Oct 28, 2024
1 parent 986195a commit 72ccc73
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,5 +232,11 @@ jobs:
with:
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Check documentation build
run: cargo --locked doc --all-features
- name: Check zvariant documentation build
run: cargo --locked doc --all-features -p zvariant
- name: Check zbus_names documentation build
run: cargo --locked doc --all-features -p zbus_names
- name: Check zbus documentation build
run: cargo --locked doc --all-features -p zbus
- name: Check zbus_xml documentation build
run: cargo --locked doc --all-features -p zbus_xml

0 comments on commit 72ccc73

Please sign in to comment.