Skip to content

Set the version to 2.0.8 #20

Set the version to 2.0.8

Set the version to 2.0.8 #20

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- github_actions_test
jobs:
test:
runs-on: ubuntu-latest
concurrency: master_push_group
steps:
- uses: actions/[email protected]
- name: Set up JDK 11 for compilation
uses: actions/[email protected]
with:
java-version: '11'
distribution: 'adopt'
- name: Set up JDK 17 for Build
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'adopt'
- name: Validate Gradle wrapper
uses: gradle/[email protected]
- name: Run tests with XVFB
id: test_default
uses: GabrielBB/xvfb-action@add653c7ca46237f2fad73a6ae95edfea0835443
with:
run: ./gradlew --continue clean build jacocoTestReport -PenableJacocoXmlReport=true
- name: Upload Test Report
uses: actions/[email protected]
if: failure() && steps.test_default.outcome == 'failure'
with:
name: junit-reports
path: subprojects/*/build/reports/tests/test/**
retention-days: 30
- name: Upload Coverage Report
uses: actions/[email protected]
if: steps.test_default.outcome == 'success'
with:
name: jacoco-reports
path: build/reports/jacoco/jacocoTestReport/html/**
retention-days: 30
- name: Run tests (Java 17) with XVFB
id: test_J17
uses: GabrielBB/xvfb-action@add653c7ca46237f2fad73a6ae95edfea0835443
with:
run: ./gradlew --continue clean build -PcompileJavaVersion=17
- name: Upload Test Report (Java 17)
uses: actions/[email protected]
if: failure() && steps.test_J17.outcome == 'failure'
with:
name: junit-reports-17
path: subprojects/*/build/reports/tests/test/**
retention-days: 30