Skip to content

Pull latest changes of spring-boot-2-template repo. Fix #2 #2

Pull latest changes of spring-boot-2-template repo. Fix #2

Pull latest changes of spring-boot-2-template repo. Fix #2 #2

Workflow file for this run

name: Pull request workflow
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: # Needed to make checkout of Git submodule too
submodules: 'true'
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build --no-daemon