Skip to content

Bump actions/checkout from 4.1.1 to 4.1.3 #91

Bump actions/checkout from 4.1.1 to 4.1.3

Bump actions/checkout from 4.1.1 to 4.1.3 #91

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: temurin
java-version: 17
- name: Build
shell: bash
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
export DISPLAY=:99.0
Xvfb $DISPLAY &
fi
mvn -V -B -e verify -Pe4.12 -Dtycho.executionEnvironment=JavaSE-17 -DskipUITests=false --no-transfer-progress