fix. fikset tester som failet etter endring til int for meldinger #1868
Workflow file for this run
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: Bygg branch | |
on: | |
push: | |
branches: | |
- '**' | |
- '!master' | |
jobs: | |
build: | |
name: Bygg branch og lag deployment-issue | |
runs-on: ubuntu-latest | |
steps: | |
- name: Sjekk ut kode | |
uses: actions/checkout@v4 | |
- name: Oppsett Java 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: maven | |
- name: Bygg og test med Maven | |
run: mvn package -B -Dsurefire.useFile=false |