diff --git a/.github/workflows/ansible-debian-bullseye.yml b/.github/workflows/ansible-debian-bullseye.yml deleted file mode 100644 index 7c36931..0000000 --- a/.github/workflows/ansible-debian-bullseye.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Run tests on Debian bullseye (11) - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - # Important: This sets up your GITHUB_WORKSPACE environment variable - - name: checkout PR - uses: actions/checkout@v2 - - - 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" diff --git a/.github/workflows/ansible-debian-buster.yml b/.github/workflows/ansible-debian-buster.yml deleted file mode 100644 index 5591074..0000000 --- a/.github/workflows/ansible-debian-buster.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Run tests on Debian buster (10) - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - # Important: This sets up your GITHUB_WORKSPACE environment variable - - name: checkout PR - uses: actions/checkout@v2 - - - 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" diff --git a/.github/workflows/ansible-debian-check.yml b/.github/workflows/ansible-debian-check.yml new file mode 100644 index 0000000..31b3c7d --- /dev/null +++ b/.github/workflows/ansible-debian-check.yml @@ -0,0 +1,43 @@ +name: Run tests on Debian + +on: [push, pull_request] + +jobs: + debian-bullseye: + runs-on: ubuntu-latest + steps: + - name: checkout PR + uses: actions/checkout@v2 + + - 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@v2 + + - 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" + + debian-stretch: + runs-on: ubuntu-latest + steps: + - name: checkout PR + uses: actions/checkout@v2 + + - name: ansible check with debian stretch (9) + uses: roles-ansible/check-ansible-debian-stretch-action@master + with: + group: local + hosts: localhost + targets: "tests/tests_*.yml" diff --git a/.github/workflows/ansible-debian-stretch.yml b/.github/workflows/ansible-debian-stretch.yml deleted file mode 100644 index be34e65..0000000 --- a/.github/workflows/ansible-debian-stretch.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Run tests on Debian stretch (9) - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - # Important: This sets up your GITHUB_WORKSPACE environment variable - - name: checkout PR - uses: actions/checkout@v2 - - - name: ansible check with debian:stretch (9) - uses: roles-ansible/check-ansible-debian-stretch-action@master - with: - group: local - hosts: localhost - targets: "tests/tests_*.yml" diff --git a/.github/workflows/ansible-debian.yml b/.github/workflows/ansible-debian.yml deleted file mode 100644 index e786f37..0000000 --- a/.github/workflows/ansible-debian.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Run tests on Debian latest - -on: [push, pull_request] - -jobs: - build: - runs-on: ubuntu-latest - steps: - # Important: This sets up your GITHUB_WORKSPACE environment variable - - name: checkout PR - uses: actions/checkout@v2 - - - name: ansible check with debian:latest - uses: roles-ansible/check-ansible-debian-latest-action@master - with: - group: local - hosts: localhost - targets: "tests/tests_*.yml"