Skip to content

Enable pyeamxx testing in SP builds #10

Enable pyeamxx testing in SP builds

Enable pyeamxx testing in SP builds #10

name: markdown
# if .md files are touched in a PR, lint them!
on:
pull_request:
branches: ["master"]
paths:
- '**/*.md'
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: tj-actions/changed-files@v44
id: changed-files
with:
files: '**/*.md'
separator: ","
- uses: DavidAnson/markdownlint-cli2-action@v16
if: steps.changed-files.outputs.any_changed == 'true'
with:
config: 'docs/.markdownlint.json'
globs: ${{ steps.changed-files.outputs.all_changed_files }}
separator: ","