Skip to content

Add Github workflow / build and test automation #2

Add Github workflow / build and test automation

Add Github workflow / build and test automation #2

Workflow file for this run

name: cc-index-table build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17 ] # Java 21 supported from Spark 4.0.0 upwards
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Build
run: mvn verify javadoc:aggregate