Skip to content

[doc] Add information about telemetry #26

[doc] Add information about telemetry

[doc] Add information about telemetry #26

Workflow file for this run

name: Linting
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
shell-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x -s bash -e SC1091