Skip to content

Updated GitHub Actions CI configuration #54

Updated GitHub Actions CI configuration

Updated GitHub Actions CI configuration #54

Workflow file for this run

name: maven
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
cache: 'maven'
- run: mvn -B package --file pom.xml