mirror of
https://github.com/maplibre/maplibre-rs.git
synced 2025-12-08 19:05:57 +00:00
* Add a view state for input processing * Move platform specific web code to web crate * Run clippy * Fix apple and android * Move error function * Do not enable all features * Remove header from .h file * Refactor to use where clauses
24 lines
652 B
YAML
24 lines
652 B
YAML
name: docs
|
|
description: Build documentation
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- uses: extractions/setup-just@v1
|
|
- name: Install toolchain
|
|
shell: bash
|
|
run: just default-toolchain
|
|
- uses: Swatinem/rust-cache@v1
|
|
- name: Setup mdBook
|
|
uses: peaceiris/actions-mdbook@v1
|
|
- name: Install Dependencies
|
|
shell: bash
|
|
run: sudo apt-get install -y libwayland-dev libxkbcommon-dev # Required for winit
|
|
- name: Build
|
|
working-directory: docs
|
|
shell: bash
|
|
run: mdbook build
|
|
- name: API Documentation
|
|
shell: bash
|
|
run: cargo doc -p maplibre --no-deps --lib --document-private-items
|