Skip to content

wip ui representation information. #7232

wip ui representation information.

wip ui representation information. #7232

Workflow file for this run

name: 'Testing'
on:
push:
branches:
- "**"
tags-ignore:
- "**"
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_CLI_OPTS: "--batch-mode --errors --fail-at-end --show-version"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.9
- name: Cache
uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: Install clamdscan
run: sudo apt-get install clamdscan -y
- name: Test
run:
mvn $MAVEN_CLI_OPTS -Dtestng.groups="travis" -Denforcer.skip=true clean org.jacoco:jacoco-maven-plugin:prepare-agent clean test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Package
run:
mvn $MAVEN_CLI_OPTS -Dmaven.test.skip=true package
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}