Bump org.apache.logging.log4j:log4j-slf4j-impl from 2.24.3 to 2.25.1 #7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |