summaryrefslogtreecommitdiffstats
path: root/.github/workflows/doc-check.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/doc-check.yml')
-rw-r--r--.github/workflows/doc-check.yml51
1 files changed, 0 insertions, 51 deletions
diff --git a/.github/workflows/doc-check.yml b/.github/workflows/doc-check.yml
deleted file mode 100644
index c679eb12..00000000
--- a/.github/workflows/doc-check.yml
+++ /dev/null
@@ -1,51 +0,0 @@
-name: Documentation check
-
-on:
- workflow_dispatch:
- pull_request:
- branches: [ main, 'release-*' ]
- paths:
- # Any files in the /docs directory at the root of the repository.
- - 'docs/**'
-
-jobs:
- mdbook-build-check:
- name: Run mdbook build
- runs-on: ubuntu-20.04
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: Setup mdBook
- uses: peaceiris/actions-mdbook@v1
- # https://github.com/marketplace/actions/mdbook-action
- with:
- mdbook-version: "0.4.18"
- # mdbook-version: 'latest'
-
- - name: Install mdbook-toc
- uses: actions-rs/install@v0.1
- # https://github.com/marketplace/actions/rust-cargo-install
- with:
- crate: mdbook-toc
- version: latest
-
- - name: Install mdbook-mermaid
- uses: actions-rs/install@v0.1
- # https://github.com/marketplace/actions/rust-cargo-install
- with:
- crate: mdbook-mermaid
- version: latest
-
- - name: Install mdbook-linkcheck
- uses: actions-rs/install@v0.1
- # https://github.com/marketplace/actions/rust-cargo-install
- with:
- crate: mdbook-linkcheck
- version: latest
-
- - name: Run mdbook build
- run: |
- ls -l
- cd docs
- mdbook build