Skip to content

Commit

Permalink
Switch to another markdown lint CI check (#1675)
Browse files Browse the repository at this point in the history
Signed-off-by: ChenYing Kuo <[email protected]>
  • Loading branch information
evshary authored Dec 18, 2024
1 parent f6f7ea4 commit f3f0924
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,11 @@ jobs:
markdown_lint:
runs-on: ubuntu-latest
steps:
- uses: articulate/actions-markdownlint@v1
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v18
with:
config: .markdownlint.yaml
files: '*.md'
ignore: target
version: 0.28.1
config: '.markdownlint.yaml'
globs: '**/README.md'

# NOTE: In GitHub repository settings, the "Require status checks to pass
# before merging" branch protection rule ensures that commits are only merged
Expand All @@ -205,7 +204,7 @@ jobs:
ci:
name: CI status checks
runs-on: ubuntu-latest
needs: [check, test, valgrind, typos]
needs: [check, test, valgrind, typos, markdown_lint]
if: always()
steps:
- name: Check whether all jobs pass
Expand Down

0 comments on commit f3f0924

Please sign in to comment.