Skip to content

Fix links and formating in Procedural knowledge learning #36

Fix links and formating in Procedural knowledge learning

Fix links and formating in Procedural knowledge learning #36

Workflow file for this run

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