test_linux_containers/Taskfile.yml
emil 9dec516467 i-3 Introduce a new task to automate linting from command line (#14)
Co-authored-by: emo <esimeonov@gmail.com>
Reviewed-on: #14
2024-03-02 01:37:00 +00:00

12 lines
197 B
YAML

---
version: '3'
tasks:
format-yml:
cmds: [yamlfix .]
lint-yml:
deps: [format-yml]
cmds: [yamllint .]
lint-ansible:
deps: [lint-yml]
cmds: [LC_ALL=C.UTF-8 ansible-lint .]