Skip to content

bump version to 0.4.0 and ensure java 17 #32

bump version to 0.4.0 and ensure java 17

bump version to 0.4.0 and ensure java 17 #32

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://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Verify
on:
push:
branches:
- '**'
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build and Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Code 📘
uses: actions/checkout@v3
- name: Set up JDK 17 🍮
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
# cache: maven
- name: Build and Verify ⚒️🧪
uses: GabrielBB/xvfb-action@v1
with:
run: mvn -B clean verify --file releng/fr.inria.diverse.melange.releng.root/pom.xml
- name: Publish Test Report 🔍
uses: mikepenz/action-junit-report@v3
if: always() # always run even if the previous step fails
with:
detailed_summary: true
report_paths: '**/target/surefire-reports/TEST-*.xml'
#- name: Publish Test Results
# uses: EnricoMi/publish-unit-test-result-action/composite@v1
# if: always() # always run even if the previous step fails
# with:
# files: "**/target/surefire-reports/TEST-*.xml"
#- name: Test Report 🔍
# uses: dorny/test-reporter@v1
# if: success() || failure() # run this step even if previous step failed
# with:
# name: Test Results
# path: ${{ github.workspace }}/**/target/surefire-reports/TEST-*.xml
# reporter: java-junit
- name: Archive logs and raw test reports 📦
uses: actions/upload-artifact@v3
if: always() # always run even if the previous step fails
with:
name: test-reports-and-workbench-logs
path: |
**/.log
**/target/surefire-reports/TEST-*.xml