Skip to content

Bump mikepenz/action-junit-report from 4.3.1 to 5.3.0 #1211

Bump mikepenz/action-junit-report from 4.3.1 to 5.3.0

Bump mikepenz/action-junit-report from 4.3.1 to 5.3.0 #1211

Workflow file for this run

name: CI
on:
pull_request:
push:
schedule:
- cron: '0 20 * * 5'
jobs:
test:
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
java:
- 8
- 21
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
with:
java-version: ${{matrix.java}}
distribution: temurin
- uses: sbt/setup-sbt@v1
- uses: coursier/cache-action@v6
- shell: bash
run: sbt -v
"+ scalafmtCheckAll"
scalafmtSbtCheck
"+ test"
- uses: mikepenz/action-junit-report@ee6b445351cd81e2f73a16a0e52d598aeac2197f # v5.3.0
if: always()
with:
report_paths: '**/target/test-reports/*.xml'
require_tests: true
check_name: "${{ matrix.java }}"