2021-10-15 18:09:51 +00:00
|
|
|
name: Test different action inputs
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
2021-10-27 22:07:24 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
2021-10-15 18:09:51 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
action-inputs:
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 18:09:51 +00:00
|
|
|
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
|
2021-10-15 18:24:41 +00:00
|
|
|
-DsystemProperty=FOO
|
|
|
|
-PgradleProperty=BAR
|
2021-10-15 18:09:51 +00:00
|
|
|
test
|
|
|
|
jar
|