Skip to content

fix(deps): update resilience4j to v2 (major) #380

fix(deps): update resilience4j to v2 (major)

fix(deps): update resilience4j to v2 (major) #380

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Test
run: ${{ matrix.cmd }}
- name: Publish Test Report
if: ${{ always() }}
uses: mikepenz/action-junit-report@a294a61c909bd8a4b563024a2faa28897fd53ebc
with:
check_name: Test Report - ${{ matrix.cmd }}
report_paths: '**/build/test-results/test/TEST-*.xml'
github_token: ${{ secrets.GITHUB_TOKEN }}