diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-06-05 20:36:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-05 20:36:03 +0200 |
| commit | 5f76238d5cd6f9c850d5237fe639ba2900fd3e6c (patch) | |
| tree | 493c7747d2a2156b99f25541425f7de545ca7599 /Makefile | |
| parent | fb6dd416e5d3609037d04e58d34fc375c450c4d5 (diff) | |
| parent | 6b9633098d6ac3bc2038d11748ebf9f67c591cf2 (diff) | |
Merge pull request #105 from return42/yaml
[enh] add test.yamllint - lint yaml files
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -51,8 +51,8 @@ search.checker.%: install $(Q)./manage pyenv.cmd searx-checker -v "$(subst _, ,$(patsubst search.checker.%,%,$@))" PHONY += test ci.test test.shell -ci.test: test.pep8 test.pylint test.unit test.robot -test: test.pep8 test.pylint test.unit test.robot test.shell +ci.test: test.yamllint test.pep8 test.pylint test.unit test.robot +test: test.yamllint test.pep8 test.pylint test.unit test.robot test.shell test.shell: $(Q)shellcheck -x -s dash \ dockerfiles/docker-entrypoint.sh @@ -81,7 +81,7 @@ MANAGE += node.env node.clean MANAGE += py.build py.clean MANAGE += pyenv pyenv.install pyenv.uninstall MANAGE += pypi.upload pypi.upload.test -MANAGE += test.pylint test.pep8 test.unit test.coverage test.robot test.clean +MANAGE += test.yamllint test.pylint test.pep8 test.unit test.coverage test.robot test.clean MANAGE += themes.all themes.oscar themes.simple themes.bootstrap PHONY += $(MANAGE) |