Skip to content

Added the transition to the persist function and moved persist to be an open method instead of function injection constructor argument #90

Added the transition to the persist function and moved persist to be an open method instead of function injection constructor argument

Added the transition to the persist function and moved persist to be an open method instead of function injection constructor argument #90

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
env:
ENVIRONMENT: TESTING
TERM: dumb
jobs:
jvm:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
cmd:
- bin/gradle clean build -i --scan --no-daemon
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: ${{ matrix.cmd }}
- name: Publish Test Report
if: ${{ always() }}
uses: mikepenz/action-junit-report@v2
with:
check_name: Test Report - ${{ matrix.cmd }}
report_paths: '**/build/test-results/test/TEST-*.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}