Skip to content

Commit b3c6563

Browse files
committed
add RST linting to workflows
1 parent 67c4c67 commit b3c6563

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/lint.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: RST Lint
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- name: Check out Git repository
12+
uses: actions/[email protected]
13+
14+
- name: Set up Python
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: '3.11'
18+
19+
- name: Instal dependencies
20+
run: pip install rst-lint
21+
22+
- name: RST Lint
23+
run: rst-lint README.rst

0 commit comments

Comments
 (0)