fix: CI/CD - brain err - not defined to is undefined #829
This file contains hidden or 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: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install ansible-lint | |
run: pip3 install ansible ansible-lint[community,yamllint] | |
- run: ansible-lint --version | |
- uses: actions/checkout@v2 | |
- name: Run ansible-lint | |
run: ansible-lint . -vv |