Skip to content

Fix a typo in one of the issue types. Add fallback for deserialization. #59

Fix a typo in one of the issue types. Add fallback for deserialization.

Fix a typo in one of the issue types. Add fallback for deserialization. #59

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ./.github/actions/gradle-cache
- name: Set up java
uses: actions/setup-java@v3
with:
distribution: corretto
java-version: 17
- name: Build
run: ./gradlew check testCodeCoverageReport --stacktrace --no-daemon
- name: Test Report
uses: phoenix-actions/test-reporting@v8
if: success() || failure()
with:
name: JUnit
path: "**/build/test-results/**/TEST-*.xml"
reporter: java-junit