Skip to content

chore(deps): Bump org.openrewrite.recipe:rewrite-recommendations from 1.14.1 to 1.14.2 #73

chore(deps): Bump org.openrewrite.recipe:rewrite-recommendations from 1.14.1 to 1.14.2

chore(deps): Bump org.openrewrite.recipe:rewrite-recommendations from 1.14.1 to 1.14.2 #73

Workflow file for this run

---
name: ci
on:
push:
branches:
- main
tags-ignore:
- "*"
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/ci.yml'
pull_request:
branches:
- main
paths-ignore:
- '.github/workflows/**'
- '!.github/workflows/ci.yml'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- name: verify
run: ./mvnw verify
- name: Publish Test Report
if: always()
uses: mikepenz/action-junit-report@v4 #https://github.com/marketplace/actions/junit-report-action
with:
report_paths: ${{ github.workspace }}/**/target/surefire-reports/*.xml
require_passed_tests: true
- name: Upload Surefire Reports
if: always()
uses: actions/upload-artifact@v4
with:
name: surefire-reports
path: ${{ github.workspace }}/**/target/surefire-reports/**
retention-days: 30