Update meta/runtime.yml to a supported ansible version #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Ansible Lint | |
on: # yamllint disable-line rule:truthy | |
merge_group: | |
branches: | |
- main | |
types: | |
- checks_requested | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
LSR_ROLE2COLL_NAMESPACE: performancecopilot | |
LSR_ROLE2COLL_NAME: metrics | |
TOX_WORK_DIR: .tox | |
permissions: | |
contents: read | |
jobs: | |
ansible_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Convert role to collection format | |
run: | | |
set -euxo pipefail | |
coll_dir="$TOX_WORK_DIR/ansible_collections/${{ env.LSR_ROLE2COLL_NAMESPACE }}/${{ env.LSR_ROLE2COLL_NAME }}" | |
bash scripts/lsrcollection.sh | |
# ansible-lint action requires a .git directory??? | |
# https://github.com/ansible/ansible-lint/blob/main/action.yml#L45 | |
mkdir -p "$coll_dir/.git" | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint@v6 | |
with: | |
working_directory: ${{ env.TOX_WORK_DIR }}/ansible_collections/${{ env.LSR_ROLE2COLL_NAMESPACE }}/${{ env.LSR_ROLE2COLL_NAME }} |