Skip to content

Add a github action to build automatically and run tests #1

Add a github action to build automatically and run tests

Add a github action to build automatically and run tests #1

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'microsoft'
java-version: '21'
- name: Build with Maven
run: mvn clean package