mirror of
https://github.com/roles-ansible/ansible_role_ranger.git
synced 2024-08-16 14:19:48 +02:00
add ansible github action check
This commit is contained in:
parent
468ea4def1
commit
d99e7c4a15
1 changed files with 22 additions and 0 deletions
22
.github/workflows/ansible-debian-stable.yml
vendored
Normal file
22
.github/workflows/ansible-debian-stable.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Ansible check debian:stable # feel free to pick your own name
|
||||
|
||||
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:stable
|
||||
# replace "master" with any valid ref
|
||||
uses: ansible/check-ansible-debian-stable-action@master
|
||||
with:
|
||||
# [required]
|
||||
# Paths to your ansible role you want to test
|
||||
# For Example:
|
||||
# targets: "role/my_role/"
|
||||
targets: "./"
|
Loading…
Reference in a new issue