From fdc234b60b9d39c61bf1cb1320695c9cf27edff7 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Wed, 12 Jan 2022 23:11:54 +0000 Subject: [PATCH] Add a step to build the book to the normal branch build --- .github/workflows/rust.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 235ab98f..ba70b868 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,8 +31,12 @@ jobs: run: cargo install --path mgba-test-runner --verbose - name: Install gbafix run: cargo install gbafix + - name: Install mdbook + run: cargo install mdbook - name: Build and test all crates run: bash .github/scripts/run-branch-build.sh - name: Build example projects run: bash .github/scripts/build-example-gba-files.sh - \ No newline at end of file + - name: Build the book + run: mdbook build + working-directory: book \ No newline at end of file