forked from thunderbird/thunderbird-android
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (24 loc) · 756 Bytes
/
Copy pathmarkdown.yml
File metadata and controls
32 lines (24 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Markdown CI
on:
pull_request:
paths:
- '**.md'
- '.github/workflows/markdown.yml'
permissions:
contents: read
jobs:
markdown_quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Cargo cache
uses: actions-rust-lang/setup-rust-toolchain@1780873c7b576612439a134613cc4cc74ce5538c # v1.15.2
- name: Install mdbook and extensions
run: ./docs/install.sh
- name: Setup Gradle environment
uses: ./.github/actions/setup-gradle
- name: Quality - Spotless Markdown Check
run: ./gradlew spotlessFlexmarkCheck
- name: Test mdbook docs
run: mdbook test docs