You've already forked bind9-docker
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 5s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 4s
Release / push-arm64 (push) Failing after 1m5s
Release / push-amd64 (push) Successful in 5m7s
Release / push-manifest (push) Has been skipped
Release / sync-to-hub-docker-io (push) Has been skipped
23 lines
362 B
YAML
23 lines
362 B
YAML
name: 'Lint Markdown files'
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch: {}
|
|
|
|
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'
|