Skip to content

Commit 6ec273a

Browse files
Add sphinx-lint
1 parent cacb339 commit 6ec273a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/lint.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Linting Workflow
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
pull_request:
8+
workflow_dispatch:
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
version: [ 3.13, 3.12, 3.11, 3.10 ]
17+
continue-on-error: true
18+
steps:
19+
- uses: actions/setup-python@master
20+
with:
21+
python-version: 3
22+
- run: pip install sphinx-lint
23+
- uses: actions/checkout@master
24+
with:
25+
ref: ${{ matrix.version }}
26+
- uses: rffontenelle/[email protected]
27+
- run: sphinx-lint

0 commit comments

Comments
 (0)