Skip to content

Bump org.apache.logging.log4j:log4j-slf4j-impl from 2.24.3 to 2.25.1 #7

Bump org.apache.logging.log4j:log4j-slf4j-impl from 2.24.3 to 2.25.1

Bump org.apache.logging.log4j:log4j-slf4j-impl from 2.24.3 to 2.25.1 #7

name: Gradle Test Validation
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
validate:
name: Validate with Gradle Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Grant execute permission to Gradle wrapper
run: chmod +x ./gradlew
- name: Run Gradle tests
run: ./gradlew test
- name: Upload test results (optional)
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results
path: build/test-results