Skip to content

Updated GitHub Actions CI configuration #27

Updated GitHub Actions CI configuration

Updated GitHub Actions CI configuration #27

Workflow file for this run

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