Skip to content

Bump actions/setup-java from 3 to 4 #33

Bump actions/setup-java from 3 to 4

Bump actions/setup-java from 3 to 4 #33

Workflow file for this run

name: pre-release
on:
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
ref: develop
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 11
distribution: 'adopt'
- name: Build
run: ./mvnw -B clean package -DskipTests
- name: Run Unit Tests
run: ./mvnw -B test