Skip to content

Add GitHub action for building the book #1

Add GitHub action for building the book

Add GitHub action for building the book #1

Workflow file for this run

name: Web
on:
push:
branches: [ '*' ]
pull_request:
branches: [ master ]
jobs:
build_book:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdBook
run: cargo install mdbook --vers 0.4.43 --locked
- name: Build book
run: cd docs && mdbook build