blob: 12b5b4cd211b5c78e50c62eafb77ab5ad76dbb11 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
set -o pipefail -eux
# This is aligned with the galaxy-importer used by AH
# https://github.com/ansible/galaxy-importer/blob/d4b5e6d12088ba452f129f4824bd049be5543358/setup.cfg#L22C4-L22C33
python -m pip install \
'ansible-lint>=6.2.2,<=6.14.3'
ansible-lint
|