Skip to content

Merge pull request #1506 from felixfontein/nil-check #218

Merge pull request #1506 from felixfontein/nil-check

Merge pull request #1506 from felixfontein/nil-check #218

Workflow file for this run

name: "Docs"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Only consider changes to documentation
paths:
- '**/*.md'
- '**/*.rst'
- '**/*.txt'
schedule:
- cron: '25 6 * * 3'
permissions:
contents: read
jobs:
documentation:
name: Lint RST and MD files
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.0.0
- name: Install rstcheck and markdownlint
run: |
pip install rstcheck
sudo gem install mdl
- name: Run rstcheck on all RST files
run: make checkrst
- name: Run mdl on all MD files
run: make checkmd