diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index ce428d4..eda5aaf 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -25,9 +25,12 @@ jobs: - uses: actions/checkout@v4 with: { fetch-depth: 0 } - - name: Install mdBook + - name: Install and test the mdBook run: make test-book + - name: Build book + run: mdbook build book + - name: Build book to tmp run: mdbook build book -d docs-tmp diff --git a/Makefile b/Makefile index c2aad35..fbbea44 100644 --- a/Makefile +++ b/Makefile @@ -92,7 +92,6 @@ test-llvm-builder: test-book: cargo install mdbook --version 0.5.1 --locked mdbook test book - mdbook build book bench: install-bin cargo criterion --all --all-features --message-format=json \