Skip to content

Csv export refinement #99

Csv export refinement

Csv export refinement #99

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: run-unit-tests
on:
pull_request:
branches: [ "main" ]
jobs:
build:
name: run-unit-tests
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Set up Maven
uses: stCarolas/[email protected]
with:
maven-version: 3.8.2
- name: Check out raire-java
uses: actions/checkout@v4
with:
repository: 'DemocracyDevelopers/raire-java'
path: raire-java
- name: Build raire-java
run: cd raire-java; mvn install; cd ..
- uses: actions/checkout@v4
- name: Build with Maven
run: mvn -B -DskipTests package --file pom.xml
- name: Test
run: mvn -B -Dmaven.test.failure.ignore=false test