mirror of
https://github.com/roles-ansible/ansible_role_epel.git
synced 2024-08-16 14:49:49 +02:00
Add github-action for centos
This commit is contained in:
parent
273848db7f
commit
f425ce38d7
4 changed files with 64 additions and 0 deletions
16
.github/workflows/ansible-centos-centos6.yml
vendored
Normal file
16
.github/workflows/ansible-centos-centos6.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Ansible check centos:centos6
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: ansible check with ubuntu:centos6
|
||||||
|
uses: roles-ansible/check-ansible-centos-centos6-action@master
|
||||||
|
with:
|
||||||
|
targets: "./"
|
16
.github/workflows/ansible-centos-centos7.yml
vendored
Normal file
16
.github/workflows/ansible-centos-centos7.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Ansible check centos:centos7
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: ansible check with ubuntu:centos7
|
||||||
|
uses: roles-ansible/check-ansible-centos-centos7-action@master
|
||||||
|
with:
|
||||||
|
targets: "./"
|
16
.github/workflows/ansible-centos-centos8.yml
vendored
Normal file
16
.github/workflows/ansible-centos-centos8.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Ansible check centos:centos8
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: ansible check with ubuntu:centos8
|
||||||
|
uses: roles-ansible/check-ansible-centos-centos8-action@master
|
||||||
|
with:
|
||||||
|
targets: "./"
|
16
.github/workflows/ansible-centos-latest.yml
vendored
Normal file
16
.github/workflows/ansible-centos-latest.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Ansible check centos:latest
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: ansible check with ubuntu:latest
|
||||||
|
uses: roles-ansible/check-ansible-centos-latest-action@master
|
||||||
|
with:
|
||||||
|
targets: "./"
|
Loading…
Reference in a new issue