Skip to content
This repository has been archived by the owner on Feb 4, 2025. It is now read-only.

Update spring boot to v3.4.0 #110

Update spring boot to v3.4.0

Update spring boot to v3.4.0 #110

Workflow file for this run

name: Build
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v4 # Checkout the code. No need of tags and whole history.
with:
fetch-depth: 1
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Gradle check
run: ./gradlew check