mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-23 00:49:42 +00:00
18 lines
328 B
YAML
18 lines
328 B
YAML
|
name: Test Action
|
||
|
|
||
|
on: push
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Run
|
||
|
uses: ./
|
||
|
with:
|
||
|
playbook: playbook.yml
|
||
|
options: |
|
||
|
--inventory=localhost,
|
||
|
--connection=local
|
||
|
--verbose
|