Skip to content

Update github action versions #429

Update github action versions

Update github action versions #429

Workflow file for this run

# Build, Run Unit tests, and make the Benchmark artifacts; jar and test-jar
name: Unit Test and Package
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml