Upgrade spring boot to 3.3.4 #74
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: tests | |
on: push | |
env: | |
IMAGE_FQDN: ghcr.io/eugenmayer/kontextwork-converter | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install libreoffice | |
run: sudo apt update && sudo apt-get install -y libreoffice | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Build | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build | |
- name: Unit Tests | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: unitTest | |
- name: IT Tests | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: itTests | |
- name: E2E Tests | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: e2eTests | |
- name: Report | |
uses: dorny/[email protected] | |
if: always() | |
with: | |
name: Tests Results | |
path: "**/test-results/**/TEST*.xml" | |
reporter: java-junit | |
fail-on-error: false |