mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-06 13:24:13 +02:00

Upgrade checkout to v3. Upgrade github-script to v6. Upgrade CodeQL actions to v2. Cleanup/formatting.
37 lines
886 B
YAML
37 lines
886 B
YAML
name: Test different action inputs
|
|
|
|
on:
|
|
pull_request:
|
|
types: [assigned, review_requested]
|
|
push:
|
|
paths:
|
|
- '.github/**'
|
|
- 'dist/**'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
|
|
env:
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{ github.workflow }}#${{ github.run_number }}:${{ github.run_attempt }}-
|
|
|
|
jobs:
|
|
action-inputs:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Invoke with multi-line arguments
|
|
uses: ./
|
|
with:
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
|
arguments: |
|
|
--configuration-cache
|
|
--build-cache
|
|
-DsystemProperty=FOO
|
|
-PgradleProperty=BAR
|
|
test
|
|
jar
|