Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
454 B

  1. name: Ansible Lint
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - name: Lint Ansible Playbook
  9. uses: ansible/ansible-lint-action@c37fb7b4bda2c8cb18f4942716bae9f11b0dc9bc
  10. with:
  11. # Paths to ansible files (i.e., playbooks, tasks, handlers etc..)
  12. targets: "./"
  13. override-deps: |
  14. ansible-lint==5.3.1
  15. args: "-x metadata, formatting"