mirror of
https://github.com/rust-embedded/embedded-hal.git
synced 2026-03-19 05:40:32 +00:00
19 lines
622 B
YAML
19 lines
622 B
YAML
on:
|
|
push: # Run CI for all branches except GitHub merge queue tmp branches
|
|
branches-ignore:
|
|
- "gh-readonly-queue/**"
|
|
pull_request: # Run CI for PRs on any branch
|
|
merge_group: # Run CI for the GitHub merge queue
|
|
|
|
name: Rustdoc check
|
|
jobs:
|
|
clippy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@master
|
|
with:
|
|
toolchain: nightly-2023-10-14
|
|
# tokio/net required to workaround https://github.com/tokio-rs/tokio/issues/6165
|
|
- run: RUSTDOCFLAGS="--deny=warnings --cfg=docsrs" cargo doc --all-features --features tokio/net
|