Fix Markdownlints in Syntax of Soar Chapter of the Soar manual #18
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: Pull-Request Check | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
check-modified-files-only: 'yes' | |
base-branch: main | |
- uses: tj-actions/changed-files@v40 | |
id: changed-files | |
with: | |
files: '**/*.md' | |
separator: "," | |
- uses: DavidAnson/markdownlint-cli2-action@v14 | |
continue-on-error: false | |
if: steps.changed-files.outputs.any_changed == 'true' | |
with: | |
globs: ${{ steps.changed-files.outputs.all_changed_files }} | |
separator: "," | |
config: '.markdownlint.json' | |
- run: pip install -r requirements.txt | |
- run: mkdocs build -s -v | |