Skip to content

Trigger

Trigger #4

Workflow file for this run

name: Verify
on:
push:
branches:
- 20250813-test
permissions:
contents: read
jobs:
verify:
name: Verify
runs-on: 'ubuntu-latest'
steps:
- name: Check Out Release Verification Tests
uses: actions/checkout@v5
with:
ref: 'gh-8'
repository: spring-projects/spring-boot-release-verification
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
- name: Check Out Send Notification Action
uses: actions/checkout@v5
with:
path: send-notification
sparse-checkout: .github/actions/send-notification
- name: Set Up Java
uses: actions/setup-java@v4
with:
distribution: 'liberica'
java-version: 17
- name: Set Up Homebrew
uses: Homebrew/actions/setup-homebrew@7657c9512f50e1c35b640971116425935bab3eea
- name: Set Up Gradle
uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # v4.4.2
with:
cache-read-only: false
- name: Configure Gradle Properties
shell: bash
run: |
mkdir -p $HOME/.gradle
echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties
- name: Run Release Verification Tests
env:
RVT_RELEASE_TYPE: 'oss'
RVT_VERSION: '4.0.0-SNAPSHOT'
run: ./gradlew spring-boot-release-verification-tests:test
- name: Upload Build Reports on Failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: build-reports
path: '**/build/reports/'