mirror of
https://github.com/LemmyNet/lemmy-docs.git
synced 2024-11-23 21:01:11 +00:00
20 lines
534 B
YAML
20 lines
534 B
YAML
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
recursive: true
|
|
submodule_update_remote: true
|
|
pipeline:
|
|
check_documentation_build:
|
|
image: rust:1.61-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 curl -y
|
|
- ./update-includes.sh
|
|
- mdbook build .
|
|
check_formatting:
|
|
image: alpine:3
|
|
commands:
|
|
- prettier -c src
|