Assorted dependency updates #192
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test build docs on PR | |
on: | |
pull_request: | |
branches: | |
- "*" | |
# Builds docs for both stable and master branches. | |
# stable is placed in the root of the gh-pages branch, while master is placed at /devel | |
jobs: | |
doc: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install mdbook | |
run: | | |
mkdir mdbook | |
curl -Lf https://github.com/rust-lang/mdBook/releases/download/v0.4.6/mdbook-v0.4.6-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook | |
echo "`pwd`/mdbook" >> $GITHUB_PATH | |
- name: Build user-guide | |
run: | | |
cd doc/user-guide | |
mdbook build | |
- name: Build dev-guide | |
run: | | |
cd doc/dev-guide | |
mdbook build |