Skip to content

fix: capture exceptions instead of throwing errors to the console. (#29) #62

fix: capture exceptions instead of throwing errors to the console. (#29)

fix: capture exceptions instead of throwing errors to the console. (#29) #62

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
if: startsWith(github.event.head_commit.message, '[CI skip]') == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
cache: 'maven'
- name: Build with Maven
run: mvn package --file pom.xml