Skip to content

Introducing more linting capabilities #2

Introducing more linting capabilities

Introducing more linting capabilities #2

Workflow file for this run

---
name: 'markdownlint'
on: # yamllint disable-line rule:truthy
pull_request:
branches: ['main']
workflow_dispatch: {}
jobs:
build:
name: 'markdownlint'
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@master'
- name: 'markdownlint'
uses: 'nosborn/[email protected]'
with:
files: '*.md'
config_file: '.markdownlint.yml'
dot: false
...