Skip to content

Formatted project-wide pom.xml #22

Formatted project-wide pom.xml

Formatted project-wide pom.xml #22

name: Automatic test of app
on:
push:
paths:
- '**.java'
- '**/pom.xml'
- '**/application*.yml'
workflow_dispatch:
jobs:
test_app:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Test of app
run: mvn -B clean test