From 55d0c79046d6640ef6c9729059748ad0dd16b87b Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 10 Feb 2021 08:04:09 +0100 Subject: [PATCH] tests: install correct ansible-lint version We need to pin the ansible-lint version depending on python version being used. Signed-off-by: Guillaume Abrioux --- .github/workflows/ansible-lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ansible-lint.yml b/.github/workflows/ansible-lint.yml index 2ce665cf0..f020fbd65 100644 --- a/.github/workflows/ansible-lint.yml +++ b/.github/workflows/ansible-lint.yml @@ -14,5 +14,8 @@ jobs: with: python-version: ${{ matrix.python-version }} architecture: x64 + - run: pip install -r <(grep ansible tests/requirements.txt) ansible-lint==4.3.7 + if: matrix.python-version == '3.6' - run: pip install -r <(grep ansible tests/requirements.txt) ansible-lint + if: matrix.python-version == '2.7' - run: ansible-lint -x 106,204,205,208 -v --force-color ./roles/*/ ./infrastructure-playbooks/*.yml site-container.yml.sample site-container.yml.sample \ No newline at end of file