Skip to content

Update mikepenz/action-junit-report digest to a294a61 #2040

Update mikepenz/action-junit-report digest to a294a61

Update mikepenz/action-junit-report digest to a294a61 #2040

Workflow file for this run

name: CI Check
on: [ push ]
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Setup Java
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5
with:
distribution: temurin
java-version: |
11
21
cache: gradle
- name: Setup GraalVM
run: ./gradlew installNativeImageTooling
- name: Check
env:
ORG_GRADLE_PROJECT_dockerHubUsername: ${{ secrets.DOCKER_USERNAME }}
ORG_GRADLE_PROJECT_dockerHubPassword: ${{ secrets.DOCKER_TOKEN }}
run: ./gradlew check --stacktrace
- name: Upload Test Results
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
if: failure()
with:
name: test-results
path: build/test-results/
- name: Publish Test Report
uses: mikepenz/action-junit-report@a294a61c909bd8a4b563024a2faa28897fd53ebc # v6
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/*/TEST-*.xml'