Skip to content

CI fix for breaking Python lint #1693

CI fix for breaking Python lint

CI fix for breaking Python lint #1693

Workflow file for this run

name: markdownlint
on:
push:
paths:
- '**/*.md'
- '.markdownlint.json'
- '!third_party/**'
pull_request:
types: [opened, synchronize, reopened]
jobs:
mdlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: markdownlint-cli
uses: nosborn/github-action-markdown-cli@v3
with:
files: '**/*.md'
config_file: '.markdownlint.json'
ignore_files: 'third_party/*'