Skip to content

6295 Rydd i SedMapper sett non-nullable #1225

6295 Rydd i SedMapper sett non-nullable

6295 Rydd i SedMapper sett non-nullable #1225

Workflow file for this run

name: Maven Test
on: pull_request
jobs:
build:
runs-on: ubuntu-latest-8-cores
permissions:
pull-requests: write
checks: write
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Maven
uses: actions/cache@preview
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Build and test
run: mvn verify
- name: Integration Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
check_name: 'Integration Tests'
report_paths: '**/target/failsafe-reports/TEST-*.xml'
- name: Unit Test Report
uses: mikepenz/action-junit-report@v4
if: success() || failure()
with:
check_name: 'Unit Tests'
report_paths: '**/target/surefire-reports/TEST-*.xml'