Add displayname annotation to each test in the service.validation pac… #5919
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: 'Backend tests' | |
on: [push] | |
jobs: | |
backend-tests: | |
runs-on: ubuntu-24.04 | |
env: | |
TZ: 'Europe/Zurich' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{vars.JAVA_VERSION}} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{vars.JAVA_VERSION}} | |
distribution: 'adopt' | |
- name: Use Maven to run unittests and integration tests | |
run: mvn clean verify |