Skip to content

fix: use junit 5 to execute tests #276

fix: use junit 5 to execute tests

fix: use junit 5 to execute tests #276

Workflow file for this run

name: Build
on:
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- name: Get queen-batch version
id: queenbatch
run: echo "::set-output name=prop::$(mvn -f pom.xml help:evaluate -Dexpression=queenbatch.version -q -DforceStdout)"
- name: Clone queen-batch
run: git clone https://github.com/InseeFr/Queen-Batch.git --depth 1 --branch ${{steps.queenbatch.outputs.prop}}
- name: Install queen-batch
run: |
cd Queen-Batch
mvn clean install -DskipTests --batch-mode --no-transfer-progress
- name: Build with Maven
timeout-minutes: 15
run: mvn clean install --batch-mode --no-transfer-progress