Skip to content

fix(deps): bump org.springframework:spring-framework-bom #2593

fix(deps): bump org.springframework:spring-framework-bom

fix(deps): bump org.springframework:spring-framework-bom #2593

# This workflow builds and tests on Windows.
# The Windows check is extracted from the Matrix in Java CI because it is a lot slower and blocks
# subsequent checks.
name: Java CI Windows
on:
push:
branches:
- main
pull_request:
jobs:
# build library
build:
runs-on: ${{ matrix.os }}
strategy:
# always run all tests to avoid having different amounts of tests.
fail-fast: false
matrix:
java_version: [ '17' ]
os: [ 'windows-latest' ]
timeout-minutes: 60
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7
with:
fetch-depth: 0 # fetch commit log so that Sonar is able to assign committers to issues
- name: Set up JDK ${{ matrix.java_version }}
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'gradle'
- name: Test with Gradle
uses: nick-fields/retry@v3.0.0
with:
timeout_minutes: 30
max_attempts: 5
retry_wait_seconds: 10
warning_on_retry: false
command: ./gradlew --parallel --continue check -x spotlessCheck
- name: Generate Test Report
if: always()
run: ./gradlew -x test testReport codeCoverageReport
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # tag=v3
if: always()
with:
name: ${{ matrix.os }}-${{ matrix.java_version }}-test-results
path: |
build/reports/
*/build/test-results/**/*.xml
retention-days: 7