Some checks failed
Golang Tests / unittest (stable, ubuntu-latest-amd64) (push) Successful in 8s
Lint Markdown files / markdown-lint (push) Successful in 4s
Golang Tests / unittest (stable, ubuntu-latest-arm64) (push) Successful in 40s
Golang CI lint / golangci (stable, ubuntu-latest-arm64) (push) Failing after 1m26s
Golang CI lint / golangci (stable, ubuntu-latest-amd64) (push) Failing after 2m19s
18 lines
351 B
YAML
18 lines
351 B
YAML
name: 'Lint Markdown files'
|
|
|
|
on:
|
|
pull_request:
|
|
types: [ "opened", "reopened", "synchronize" ]
|
|
push:
|
|
branches: [ '*' ]
|
|
tags-ignore: [ '*' ]
|
|
|
|
jobs:
|
|
markdown-lint:
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
- uses: DavidAnson/markdownlint-cli2-action@v19.1.0
|
|
with:
|
|
globs: '**/*.md' |