Skip to content

Commit d15e975

Browse files
committed
Add GitHub action to check ReST input files
1 parent 1b27f82 commit d15e975

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/rst-lint.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Check ReST input files
2+
on: [push, pull_request]
3+
jobs:
4+
doc8:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Check out repository code
8+
uses: actions/checkout@v4
9+
- name: doc8-check
10+
uses: deep-entertainment/doc8-action@v4
11+
with:
12+
scan-paths: "/doc/src, README.rst, CHANGES.rst"

0 commit comments

Comments
 (0)