docs(rfc): uuidv7 identifier migration #168
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Quality - Check Markdown | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| - 'quality-markdown.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality-markdown: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Cargo cache | |
| uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 # v1.17.0 | |
| - 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 |