2022-04-07 15:02:00 +02:00
|
|
|
name: Run tests on Debian
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
debian-bullseye:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: checkout PR
|
2023-04-11 17:35:44 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-04-07 15:02:00 +02:00
|
|
|
|
|
|
|
- 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
|
2023-04-11 17:35:44 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-04-07 15:02:00 +02:00
|
|
|
|
|
|
|
- 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"
|