mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2024-11-22 15:32:18 +00:00
workflows: run the playbook against other container
this way we can test if ssh is working
This commit is contained in:
parent
36026d33a9
commit
938ce6ffd6
1 changed files with 7 additions and 2 deletions
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
|
@ -5,6 +5,11 @@ on: push
|
|||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
host:
|
||||
image: dawidd6/alpine-for-ansible
|
||||
env:
|
||||
SSH_PUBLIC_KEY: ${{secrets.SSH_PUBLIC_KEY}}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -12,7 +17,7 @@ jobs:
|
|||
uses: ./
|
||||
with:
|
||||
playbook: playbook.yml
|
||||
key: ${{secrets.SSH_PRIVATE_KEY}}
|
||||
options: |
|
||||
--inventory=localhost,
|
||||
--connection=local
|
||||
--inventory=user@host,
|
||||
--verbose
|
Loading…
Reference in a new issue