mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-08 21:03:29 +01:00
17 lines
431 B
YAML
17 lines
431 B
YAML
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
|
|
- 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/*.yml"
|