From b68f1c375272e7f58e8f1bdf64cc1ba3e8e6329f Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Wed, 11 Jan 2023 00:14:23 +0100 Subject: [PATCH] add doc check in CI --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb63c3d..82649d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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