ansible-sshd/.github/workflows/ansible-lint.yml

39 lines
929 B
YAML
Raw Normal View History

2020-03-29 15:44:28 +02:00
name: Ansible Lint # feel free to pick your own name
on: [push, pull_request]
jobs:
2020-04-04 09:41:01 +02:00
test-ansible28:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@master
with:
targets: "tests/test.yml"
override-deps: |
ansible==2.8
args: ""
test-ansible29:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@master
with:
targets: "tests/test.yml"
override-deps: |
ansible==2.9
args: ""
test-ansible210:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint Ansible Playbook
uses: ansible/ansible-lint-action@master
with:
targets: "tests/test.yml"
override-deps: |
ansible==2.10
2020-03-29 15:44:28 +02:00
args: ""