Skip to content

Added github action to verify build #1

Added github action to verify build

Added github action to verify build #1

Workflow file for this run

name: CI
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots --errors --fail-at-end --show-version verify