From 6befc534228df74a6cfe1350d50df07547689088 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Tue, 7 Apr 2020 00:03:41 +0200 Subject: [PATCH] workflows: another test job --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c1aa322..8109cba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,3 +39,22 @@ jobs: options: | --inventory hosts --limit local + test-local-more: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Test local + uses: ./ + with: + playbook: playbook.yml + key: ${{secrets.SSH_PRIVATE_KEY}} + vault_password: test + inventory: | + [remote] + host ansible_user=user + + [local] + localhost ansible_user=root ansible_connection=local + options: | + --limit local