Skip to content

Bump mikepenz/action-junit-report from 4.1.0 to 4.2.1 #1003

Bump mikepenz/action-junit-report from 4.1.0 to 4.2.1

Bump mikepenz/action-junit-report from 4.1.0 to 4.2.1 #1003

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@9704b39bf258b59bc04b50fa2dd55e9ed76b47a8 # v4.1.0
with:
java-version: ${{matrix.java}}
distribution: temurin
- uses: coursier/cache-action@v6
- shell: bash
run: sbt -v
"+ scalafmtCheckAll"
scalafmtSbtCheck
"+ test"
- uses: mikepenz/action-junit-report@9379f0ccddcab154835d4e2487555ee79614fe95 # v4.2.1
if: always()
with:
report_paths: '**/target/test-reports/*.xml'
require_tests: true
check_name: "${{ matrix.java }}"