Skip to content

Update sbt to 2.0.1 #1050

Update sbt to 2.0.1

Update sbt to 2.0.1 #1050

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- main
- series/**
push:
branches:
- main
- series/**
- feature/**
permissions:
contents: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
scala: [2.12.x, 2.13.x, 3.3.x]
steps:
- uses: actions/checkout@v7
- name: Set up JDK 17
uses: actions/setup-java@v6
with:
java-version: 17
distribution: temurin
cache: sbt
- name: Install sbt
uses: sbt/setup-sbt@v1.5.9
- name: ⚙️ Run build
run: sbt "++${{ matrix.scala }}; build"
- name: Publish Test Report
uses: mikepenz/action-junit-report@v6
if: always()
with:
report_paths: &testReportPath "**/target/**/test-reports/*.xml"
require_tests: true
check_name: "${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }}"
- name: Create Test Summary
uses: test-summary/action@v2
with:
paths: *testReportPath
if: always()
- name: Code Coverage
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}