2020-03-29 15:44:28 +02:00
|
|
|
name: Ansible Lint # feel free to pick your own name
|
|
|
|
|
2024-01-08 18:23:25 +01:00
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
|
|
|
|
env:
|
|
|
|
LSR_ROLE2COLL_NAMESPACE: willshersystems
|
|
|
|
LSR_ROLE2COLL_NAME: sshd
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
2020-03-29 15:44:28 +02:00
|
|
|
|
|
|
|
jobs:
|
2022-04-06 16:23:23 +02:00
|
|
|
ansible-lint:
|
2020-04-04 09:41:01 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-08 18:23:25 +01:00
|
|
|
- name: Update pip, git
|
|
|
|
run: |
|
|
|
|
set -euxo pipefail
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install -y git
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: checkout PR
|
2023-09-05 14:23:27 +02:00
|
|
|
uses: actions/checkout@v4
|
2024-01-08 18:23:25 +01:00
|
|
|
- name: Install tox, tox-lsr
|
|
|
|
run: |
|
|
|
|
set -euxo pipefail
|
|
|
|
pip3 install "git+https://github.com/linux-system-roles/tox-lsr@3.2.1"
|
|
|
|
- name: Convert role to collection format
|
|
|
|
run: |
|
|
|
|
set -euxo pipefail
|
|
|
|
TOXENV=collection lsr_ci_runtox
|
|
|
|
coll_dir=".tox/ansible_collections/$LSR_ROLE2COLL_NAMESPACE/$LSR_ROLE2COLL_NAME"
|
|
|
|
# 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: .tox/ansible_collections/${{ env.LSR_ROLE2COLL_NAMESPACE }}/${{ env.LSR_ROLE2COLL_NAME }}
|