Merge pull request #364 from virtUOS/updated-dependencies #742
Workflow file for this run
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: | |
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 |