feat: add extended exception context to EXN_STACKTRACE #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |