ansible-sshd/.github/workflows/ansible-debian-check.yml
dependabot[bot] 65cb76028f
build(deps): bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-09-05 12:23:27 +00:00

43 lines
1.1 KiB
YAML

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"