Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Fixes #47 - Add release workflow #29

Fixes #47 - Add release workflow

Fixes #47 - Add release workflow #29

Workflow file for this run

name: build
on:
push:
branches:
- '*'
tags-ignore:
- 'v*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Java 21
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: mvn -B --ntp verify