Add a yamllint check for workflows

This commit is contained in:
Chris Mayo 2021-11-30 19:45:17 +00:00
parent 2bc0b716bc
commit 454ce0c3a5
4 changed files with 13 additions and 0 deletions

View file

@ -123,6 +123,7 @@ jobs:
- flake8
- check-manifest
- check-python-versions
- yamllint
steps:
- name: Git clone

6
.yamllint Normal file
View file

@ -0,0 +1,6 @@
extends: default
rules:
document-start: disable
line-length: disable
truthy: {check-keys: false}

View file

@ -9,6 +9,7 @@ include Makefile
include install-rpm.sh
include .project
include .pydevproject
include .yamllint
recursive-include cgi-bin \
*.css \

View file

@ -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/