Files
spring-integration-aws/.github/workflows/spring-gradle-pull-request-build.yml
Artem Bilan 77b2d74ea2 Fix verify-staged-artifacts.yml
* Some other GHAs clean up
2023-11-14 16:08:28 -05:00

37 lines
772 B
YAML

name: Pull Request Build with Gradle
on:
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
cache: gradle
- name: Run Gradle
uses: burrunan/gradle-cache-action@v1
with:
debug: false
concurrent: true
gradle-build-scan-report: false
arguments: check
- name: Capture Test Results
if: failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: '*/build/reports/tests/**/*.*'
retention-days: 3