mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-01 01:59:54 +00:00
Nutomic
7d24dd4b51
* Rewrite lemmy_protocol.md, to embed all json examples from lemmy repo * Upgrade Rust version for CI
19 lines
509 B
YAML
19 lines
509 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: fetch git submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule init
|
|
- git submodule update --recursive --remote
|
|
|
|
- name: check documentation build
|
|
image: rust:1.56-slim-buster
|
|
commands:
|
|
- cargo install mdbook --git https://github.com/Ruin0x11/mdBook.git --branch localization
|
|
--rev 9d8147c --force --debug
|
|
- apt-get update
|
|
- apt-get install git -y
|
|
- ./update-includes.sh
|
|
- mdbook build .
|