Skip to content

chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.2.4 to 3.2.5 #79

chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.2.4 to 3.2.5

chore(deps): bump org.springframework.boot:spring-boot-starter-parent from 3.2.4 to 3.2.5 #79

Workflow file for this run

name: build
on:
push:
paths-ignore:
- "docs/**"
branches:
- master
- release/*
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up Database
run: |
docker-compose up -d postgres
docker ps -a
- name: Cache Maven packages
uses: actions/cache@v1
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: |
mvn clean package -DskipTests
mvn test