add doc check in CI
Rust/spacepackets/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2023-01-11 00:14:23 +01:00
parent 7c9bdb4512
commit b68f1c3752
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C
1 changed files with 15 additions and 0 deletions

View File

@ -73,6 +73,21 @@ jobs:
command: fmt
args: --all -- --check
check-doc:
name: Check Documentation Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: doc
args: --all-features
clippy:
name: Clippy
runs-on: ubuntu-latest