Skip to content

Commit

Permalink
Add github action to run markdownlint on pull requests (openxla#941)
Browse files Browse the repository at this point in the history
This will resolve issue openxla#792
  • Loading branch information
scottamain authored and GleasonK committed Feb 10, 2023
1 parent d34e482 commit 33f0a0b
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 33f0a0b

Please sign in to comment.