Skip to content

Use autobuild in CodeQL on GHA workflow #19

Use autobuild in CodeQL on GHA workflow

Use autobuild in CodeQL on GHA workflow #19

Workflow file for this run

name: Maven Build & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
name: Run Maven on ${{ matrix.os }}
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 23
cache: maven
# Test not only testcases but also packaging with jlink
- name: Run Maven
run: mvn -B package