Skip to content

Commit 3acfbf0

Browse files
authored
Create po-lint.yml
1 parent 4011f37 commit 3acfbf0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/po-lint.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
26+
ref: ${{ matrix.version }}
27+
- uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0
28+
- run: sphinx-lint

0 commit comments

Comments
 (0)