-
Notifications
You must be signed in to change notification settings - Fork 136
43 lines (36 loc) · 1.06 KB
/
ansible-debian-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Run tests on Debian
on: [push, pull_request]
jobs:
debian-bookworm:
runs-on: ubuntu-latest
steps:
- name: checkout PR
uses: actions/checkout@v4
- name: ansible check with debian bookworm (12)
uses: roles-ansible/check-ansible-debian-bookworm-action@v1
with:
group: local
hosts: localhost
targets: "tests/tests_*.yml"
debian-bullseye:
runs-on: ubuntu-latest
steps:
- name: checkout PR
uses: actions/checkout@v4
- name: ansible check with debian bullseye (11)
uses: roles-ansible/check-ansible-debian-bullseye-action@main
with:
group: local
hosts: localhost
targets: "tests/tests_*.yml"
debian-buster:
runs-on: ubuntu-latest
steps:
- name: checkout PR
uses: actions/checkout@v4
- name: ansible check with debian buster (10)
uses: roles-ansible/check-ansible-debian-buster-action@master
with:
group: local
hosts: localhost
targets: "tests/tests_*.yml"