Skip to content

Update scala-library, scala-reflect to 2.12.20 #185

Update scala-library, scala-reflect to 2.12.20

Update scala-library, scala-reflect to 2.12.20 #185

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ "main" ]
permissions:
contents: read
env:
LOG_LEVEL: DEBUG
CASSANDRA_LOG_LEVEL: DEBUG
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: Check formatting, scalafix, and headers
run: sbt styleCheck
- name: Check MiMa
run: sbt mimaReportBinaryIssues
- name: Check docs
run: sbt docs/mdoc
- name: Test Coverage
run: sbt testCoverage