Skip to content

Add GitHub Packages pipeline #117

Add GitHub Packages pipeline

Add GitHub Packages pipeline #117

Workflow file for this run

# This workflow starts build and test for PR commits
name: Pull Request
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
- name: Build with Maven
run: mvn -B package