Skip to content

Bump mikepenz/action-junit-report from 3 to 4 #143

Bump mikepenz/action-junit-report from 3 to 4

Bump mikepenz/action-junit-report from 3 to 4 #143

Workflow file for this run

name: build
on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '20'
- uses: gradle/wrapper-validation-action@v1
- uses: gradle/gradle-build-action@v2
- name: Build with Gradle
run: ./gradlew build --warning-mode all
- name: Publish Test Report
uses: mikepenz/action-junit-report@v4
if: ${{ !cancelled() }}
with:
report_paths: 'build/test-results/**/TEST-*.xml'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
file: ./build/reports/jacoco/test/jacocoTestReport.xml