Skip to content

Commit

Permalink
Add GitHub action to check ReST input files
Browse files Browse the repository at this point in the history
  • Loading branch information
RKrahl committed Dec 21, 2023
1 parent 1b27f82 commit d1d0f38
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/rst-lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Check ReST input files
on: [push, pull_request]
jobs:
doc8:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: doc8-check
uses: deep-entertainment/doc8-action@v4
with:
scanPaths: "doc/src"

0 comments on commit d1d0f38

Please sign in to comment.