[ansible/sound] Fix variable name #86
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: Check code style and quality | |
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 |