Skip to content

feat: add extended exception context to EXN_STACKTRACE #8

feat: add extended exception context to EXN_STACKTRACE

feat: add extended exception context to EXN_STACKTRACE #8

Workflow file for this run

name: Pull Request Build
on:
pull_request:
branches:
- main
jobs:
build:
# Make sure it builds for LTS versions of Java
strategy:
matrix:
java_version: [8, 11, 17, 21]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
name: Set up JDK ${{ matrix.java_version }}
with:
java-version: "${{ matrix.java_version }}"
distribution: "temurin"
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml