mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Add a yamllint check for workflows
This commit is contained in:
parent
2bc0b716bc
commit
454ce0c3a5
4 changed files with 13 additions and 0 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
|
@ -123,6 +123,7 @@ jobs:
|
|||
- flake8
|
||||
- check-manifest
|
||||
- check-python-versions
|
||||
- yamllint
|
||||
|
||||
steps:
|
||||
- name: Git clone
|
||||
|
|
|
|||
6
.yamllint
Normal file
6
.yamllint
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
extends: default
|
||||
|
||||
rules:
|
||||
document-start: disable
|
||||
line-length: disable
|
||||
truthy: {check-keys: false}
|
||||
|
|
@ -9,6 +9,7 @@ include Makefile
|
|||
include install-rpm.sh
|
||||
include .project
|
||||
include .pydevproject
|
||||
include .yamllint
|
||||
|
||||
recursive-include cgi-bin \
|
||||
*.css \
|
||||
|
|
|
|||
5
tox.ini
5
tox.ini
|
|
@ -37,3 +37,8 @@ commands = check-manifest {posargs}
|
|||
deps = check-python-versions
|
||||
skip_install = true
|
||||
commands = check-python-versions {posargs}
|
||||
|
||||
[testenv:yamllint]
|
||||
deps = yamllint
|
||||
skip_install = true
|
||||
commands = yamllint {posargs} -s .github/workflows/
|
||||
|
|
|
|||
Loading…
Reference in a new issue