Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 27d3a4a

Browse files
committed
Update yamllint.yml
1 parent 6312f8d commit 27d3a4a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/yamllint.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ permissions:
1111
jobs:
1212
build:
1313
runs-on: 'ubuntu-24.04'
14+
# Adding 'timeout-minutes: 10' would prevent jobs from running
15+
# indefinitely if something goes wrong
16+
timeout-minutes: 10
1417
strategy:
1518
matrix:
1619
python-version: ["3.x"]
@@ -28,10 +31,10 @@ jobs:
2831
- name: Install yamllint
2932
run: |
3033
python -m pip install --upgrade pip setuptools wheel
31-
pip install --user yamllint
34+
python -m pip install --user yamllint
3235
- name: Version check
3336
run: |
34-
yamllint --version
37+
python -m yamllint --version
3538
- name: Analysing YML files
3639
run: |
37-
yamllint --list-files . -c .yamllint.yaml
40+
python -m yamllint --list-files . -c .yamllint.yaml

0 commit comments

Comments
 (0)