From 422726cec5739c2ce93e78ca009e0adc149874d2 Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Fri, 15 Oct 2021 12:09:51 -0600 Subject: [PATCH] Add test for multi-line input arguments --- .github/workflows/integTest-action-inputs.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/integTest-action-inputs.yml diff --git a/.github/workflows/integTest-action-inputs.yml b/.github/workflows/integTest-action-inputs.yml new file mode 100644 index 0000000..8782dd8 --- /dev/null +++ b/.github/workflows/integTest-action-inputs.yml @@ -0,0 +1,25 @@ +name: Test different action inputs + +on: + pull_request: + push: + workflow_dispatch: + +env: + CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}- + +jobs: + action-inputs: + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v2 + - name: Invoke with multi-line arguments + uses: ./ + with: + build-root-directory: __tests__/samples/groovy-dsl + arguments: | + --configuration-cache + --build-cache + test + jar \ No newline at end of file