Skip to content

Add core jdk 17 support to the scala library #55

Add core jdk 17 support to the scala library

Add core jdk 17 support to the scala library #55

Workflow file for this run

name: CI pipeline
permissions:
checks: write
on:
pull_request:
paths:
- '**'
push:
branches:
- '*'
tags-ignore:
- 'v[0-9]+.[0-9]+.[0-9]+'
paths-ignore:
- '**.md'
jobs:
ci-pipeline:
runs-on: ubuntu-22.04
env:
ENV: 'ci'
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build and test
run: |
sbt -java-home "$JAVA_HOME_17_X64" clean +test
- name: Publish Unit test results
uses: mikepenz/action-junit-report@v4
with:
report_paths: '**/target/test-reports/TEST-*.xml'
check_name: Unit test results
if: always()