mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-11 23:25:28 +01:00
* Fixes #612 * Replace RHEL9.4 with 9.5 on devel * Replace FreeBSD13.3 with 14.2 on devel * Fixes ansible-lint path Signed-off-by: Hideki Saito <saito@fgrep.org>
14 lines
304 B
Bash
Executable file
14 lines
304 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o pipefail -eux
|
|
|
|
echo "${PATH/\~/${HOME}}"
|
|
echo "${HOME}"
|
|
|
|
pip install --upgrade --user pip
|
|
pip install --upgrade --user ansible-lint
|
|
command -v ansible
|
|
command -v ansible-lint
|
|
ansible-lint --version
|
|
#ansible-lint --exclude changelogs/ --profile=production -vv
|
|
ansible-lint -vv
|