Skip to content

build(deps): bump org.springframework.boot:spring-boot-starter-parent #246

build(deps): bump org.springframework.boot:spring-boot-starter-parent

build(deps): bump org.springframework.boot:spring-boot-starter-parent #246

Workflow file for this run

name: Backend CI
on:
push:
paths:
- "backend/**"
- ".github/workflows/backend.yml"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Java
uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version: "21"
cache: "maven"
- name: Run Spotless Check
working-directory: ./backend
run: ./mvnw spotless:check
- name: Build with Maven
working-directory: ./backend
run: ./mvnw verify -DskipTests