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 4011f37 commit 3acfbf0Copy full SHA for 3acfbf0
.github/workflows/po-lint.yml
@@ -0,0 +1,28 @@
1
+name: Linting Workflow
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * *'
6
+ push:
7
+ branches:
8
+ - '*'
9
+ workflow_dispatch:
10
11
+jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ version: [ '3.14' ]
18
+ continue-on-error: true
19
+ steps:
20
+ - uses: actions/setup-python@master
21
+ with:
22
+ python-version: 3
23
+ - run: pip install sphinx-lint
24
+ - uses: actions/checkout@master
25
26
+ ref: ${{ matrix.version }}
27
+ - uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0
28
+ - run: sphinx-lint
0 commit comments