Skip to content

Update CI build trigger to push and pr #1

Update CI build trigger to push and pr

Update CI build trigger to push and pr #1

name: CI Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build Main Branch
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build Initial with Maven
run: ./mvnw --batch-mode clean package