mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-12 22:50:17 +01:00
19 lines
507 B
YAML
19 lines
507 B
YAML
name: Run tests on CentOS 6
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
# Workaround missing support for end_host in old ansible
|
|
- run: "sed -i -e 's/meta: end_host/assert:\\n that: __sshd_os_supported|bool/' tasks/install.yml"
|
|
|
|
- name: ansible check with centos:6
|
|
uses: roles-ansible/check-ansible-centos-centos6-action@master
|
|
with:
|
|
group: local
|
|
hosts: localhost
|
|
targets: "tests/*.yml"
|