Formatted project-wide pom.xml #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |