mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-14 15:30:18 +01:00
18 lines
421 B
YAML
18 lines
421 B
YAML
|
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
|
||
|
- 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/*.yml"
|