Skip to content

added frontend build steps in pom.xml and removed now redundant steps… #263

added frontend build steps in pom.xml and removed now redundant steps…

added frontend build steps in pom.xml and removed now redundant steps… #263

Workflow file for this run

name: Run tests
on: [push]
jobs:
tests:
name: Run tests with spring boot version compability check
runs-on: ubuntu-latest
strategy:
matrix:
spring-boot: [ '2.7.15', '3.0.6', '3.1.3' ]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: run tests
run: mvn -B -Dspring-boot.version=${{ matrix.spring-boot }} clean test --file pom.xml