We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e568a92 commit 91bd1b0Copy full SHA for 91bd1b0
.github/workflows/book.yml
@@ -25,9 +25,12 @@ jobs:
25
- uses: actions/checkout@v4
26
with: { fetch-depth: 0 }
27
28
- - name: Install mdBook
+ - name: Install and test the mdBook
29
run: make test-book
30
31
+ - name: Build book
32
+ run: mdbook build book
33
+
34
- name: Build book to tmp
35
run: mdbook build book -d docs-tmp
36
Makefile
@@ -92,7 +92,6 @@ test-llvm-builder:
92
test-book:
93
cargo install mdbook --version 0.5.1 --locked
94
mdbook test book
95
- mdbook build book
96
97
bench: install-bin
98
cargo criterion --all --all-features --message-format=json \
0 commit comments