Skip to content

Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 #201

Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7

Bump io.projectreactor:reactor-core from 3.6.6 to 3.6.7 #201

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle for Coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- uses: gradle/gradle-build-action@v3
with:
gradle-version: current
arguments: test
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/test/TEST-*.xml'
- uses: gradle/gradle-build-action@v3
with:
gradle-version: current
arguments: testCodeCoverageReport
- uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
fail_ci_if_error: true
verbose: true # optional (default = false)
files: build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml