Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

26 строки
568 B

  1. ---
  2. name: Matrix CI
  3. on: # yamllint disable-line rule:truthy
  4. push:
  5. pull_request:
  6. jobs:
  7. yamllint:
  8. name: 🧹 yamllint
  9. runs-on: ubuntu-latest
  10. steps:
  11. - name: ⤵️ Check out configuration from GitHub
  12. uses: actions/checkout@v2.4.0
  13. - name: 🚀 Run yamllint
  14. uses: frenck/action-yamllint@v1.1.2
  15. ansiblelint:
  16. name: ansible-lint
  17. runs-on: ubuntu-latest
  18. steps:
  19. - uses: actions/checkout@v2
  20. - name: Lint Ansible Playbook
  21. uses: ansible/ansible-lint-action@master
  22. with:
  23. targets: "setup.yml"