ci: update linter #2
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: | |
push: | |
jobs: | |
build: | |
name: Check the .yml using ansible lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ansible Galaxy dependencies | |
run: | | |
ansible-galaxy collection install community.general | |
ansible-galaxy collection install community.mysql | |
- name: Run ansible-lint | |
uses: ansible/ansible-lint@main |