Make CI install ansible package
All checks were successful
continuous-integration/drone/push Build is passing

This might fix the community.docker.docker_network missing error
This commit is contained in:
Paul Brinkmeier 2023-06-09 00:51:06 +02:00
parent 06b673ec89
commit 21329ecabd
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
--- ---
profile: production
offline: true offline: true
profile: basic

View File

@ -6,7 +6,7 @@ steps:
- name: ansible-lint - name: ansible-lint
image: python:3.10.6 image: python:3.10.6
commands: commands:
- pip --disable-pip-version-check install ansible-core==2.15.0 ansible-lint==6.16.1 > /dev/null 2> /dev/null - pip --disable-pip-version-check install ansible==7.2.0 ansible-lint==6.16.1 > /dev/null 2> /dev/null
- ansible-lint -c .ansible-lint ansible - ansible-lint -c .ansible-lint ansible
--- ---