Skip to content

Commit

Permalink
Add github action to run markdownlint on pull requests (#941)
Browse files Browse the repository at this point in the history
This will resolve issue #792
  • Loading branch information
scottamain authored Jan 19, 2023
1 parent a5e53ce commit 687a6c7
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/markdown_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright 2023 The StableHLO Authors.

name: Markdown Lint

on:
workflow_dispatch:
pull_request:
paths:
- '**.md'

jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- name: Checking out repository
uses: actions/checkout@v3
- name: Running markdownlint
run: |
./build_tools/github_actions/lint_markdown.sh "./**/*.md"

0 comments on commit 687a6c7

Please sign in to comment.