From 20234ec5559e40a355bf4f38d05a83419ff52698 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 11 Jun 2024 03:52:15 +0100 Subject: [PATCH] ci: fail on doc error --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e64d6c84d..04ca8f0c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,7 +124,7 @@ jobs: run: cargo-ci-cache-clean doc_tests: - name: doc tests + name: Documentation Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -134,6 +134,8 @@ jobs: with: toolchain: nightly - - name: doc tests - timeout-minutes: 40 - run: cargo ci-doctest -- --nocapture + - name: Test docs + run: just test-docs + + - name: Build docs + run: just doc