test_linux_containers/Taskfile.yml

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 .]