Skip to content

[ansible] Remove requirements file #21

[ansible] Remove requirements file

[ansible] Remove requirements file #21

Workflow file for this run

name: Ansible/YAML Linting & Artifacts
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ansible requirements
run: |
pip install ansible-playbook-grapher ansible ansible-lint
sudo apt-get -y install graphviz
ansible-galaxy collection install -r ansible/requirements.yml --force
- name: Run ansible-lint
working-directory: ./ansible
run: ansible-lint
- name: Retrieve task list from playbook
env:
ANSIBLE_LOCALHOST_WARNING: False
run: |
mkdir artifacts
ansible-playbook --list-tasks ansible/site.yml > artifacts/list-tasks-site
- name: Generate graph representing the Ansible playbook
env:
ANSIBLE_LOCALHOST_WARNING: False
run: |
ansible-playbook-grapher --include-role-tasks ansible/site.yml -o artifacts/graph-site
- name: Upload Ansible artifacts
uses: actions/upload-artifact@v3
with:
name: ansible-artifacts
path: artifacts
yaml-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run yaml-lint
uses: ibiqlik/action-yamllint@v3
with:
config_file: ansible/.yamllint