Add docker-compose-plugin to install of docker.yml - This fixes fix #377 #765
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 |