We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cacb339 commit 6ec273aCopy full SHA for 6ec273a
.github/workflows/lint.yml
@@ -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
25
+ ref: ${{ matrix.version }}
26
+ - uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0
27
+ - run: sphinx-lint
0 commit comments