diff options
author | Yanis Guenane <yanis@guenane.org> | 2019-11-30 19:43:23 +0100 |
---|---|---|
committer | Yanis Guenane <yanis@guenane.org> | 2019-12-02 15:12:51 +0100 |
commit | ca247182dffe56a034c8220d745433e52c4f3684 (patch) | |
tree | f39844329478ce0f172483f4810a7e45bb3180dd /installer/build.yml | |
parent | Merge pull request #5411 from marshmalien/5338-wf-inventory-lookup-permissions (diff) | |
download | awx-ca247182dffe56a034c8220d745433e52c4f3684.tar.xz awx-ca247182dffe56a034c8220d745433e52c4f3684.zip |
yamllint: Make all files in awx pass yamllint
This commit updates all files that weren't passing yamllint for them to
pass.
A new yamllint target has been added. One can run `tox -e yamllint` or
`yamllint -s .` locally to ensure yaml files are still passing.
This check will be enabled in the CI so it can get on every new
contributions, and prevent merging non-compliant code.
Signed-off-by: Yanis Guenane <yguenane@redhat.com>
Diffstat (limited to 'installer/build.yml')
-rw-r--r-- | installer/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/build.yml b/installer/build.yml index 00dc6424ef..13b2b430b9 100644 --- a/installer/build.yml +++ b/installer/build.yml @@ -3,5 +3,5 @@ hosts: all gather_facts: false roles: - - { role: image_build } - - { role: image_push, when: "docker_registry is defined" } + - {role: image_build} + - {role: image_push, when: "docker_registry is defined"} |