Skip to content

Set TQB.drop_when_fulll to true by default (https://issues.redhat.com… #980

Set TQB.drop_when_fulll to true by default (https://issues.redhat.com…

Set TQB.drop_when_fulll to true by default (https://issues.redhat.com… #980

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
permissions:
contents: read
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (if available).
java: [ 11, 17, 20, 21-ea ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
# In order to support Windows PowerShell, a space between -D property=true is required.
run: mvn -B verify -D maven.test.skip.exec=true