From 8ca852c728b18f0f278e064e4e90871afb530f98 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Fri, 3 Sep 2021 18:03:52 +0200 Subject: [PATCH] CICD: Put documentation testing in its own job (#1831) For increased parallelization and thus a faster CICD pipeline. --- .github/workflows/CICD.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 5e816521..b3b14e1a 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -86,6 +86,19 @@ jobs: run: bat --list-languages - name: List of themes run: bat --list-themes + + documentation: + name: Documentation + runs-on: ubuntu-20.04 + steps: + - name: Git checkout + uses: actions/checkout@v2 + - name: Install Rust toolchain + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + default: true + profile: minimal - name: Check documentation env: RUSTDOCFLAGS: -D warnings