Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- ---
- name: Matrix CI
-
- on: # yamllint disable-line rule:truthy
- push:
- pull_request:
-
- jobs:
- yamllint:
- name: 🧹 yamllint
- runs-on: ubuntu-latest
- steps:
- - name: ⤵️ Check out configuration from GitHub
- uses: actions/checkout@v2.4.0
- - name: 🚀 Run yamllint
- uses: frenck/action-yamllint@v1.1.2
- ansiblelint:
- name: ansible-lint
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Lint Ansible Playbook
- uses: ansible/ansible-lint-action@master
- with:
- targets: "setup.yml"
|