From b870361b3703e6a0ff5616f08a438acead74f70b Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Mon, 6 Apr 2020 23:45:33 +0200 Subject: [PATCH] workflows: run separate jobs --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03fc45a..3ac6d2a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,7 @@ name: Test Action on: push jobs: - test: + test-remote: runs-on: ubuntu-latest steps: - name: Checkout code @@ -26,6 +26,11 @@ jobs: -e INPUT_KEY="${{secrets.SSH_PRIVATE_KEY}}" \ -e INPUT_OPTIONS="--inventory hosts --limit remote" \ action + test-local: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 - name: Test local uses: ./ with: