diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fe7545..cf85cf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8, 2.12.15] + scala: [2.13.8, 2.12.16] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/build.sbt b/build.sbt index 861d717..ebade0d 100644 --- a/build.sbt +++ b/build.sbt @@ -2,18 +2,20 @@ import _root_.io.github.davidgregory084.DevMode // General info val username = "RustedBones" -val repo = "akka-http-thrift" +val repo = "akka-http-thrift" ThisBuild / tpolecatDefaultOptionsMode := DevMode ThisBuild / tpolecatDevModeOptions ~= { opts => - opts.filterNot(Set( - ScalacOptions.warnValueDiscard, - ScalacOptions.privateWarnValueDiscard - )) + opts.filterNot( + Set( + ScalacOptions.warnValueDiscard, + ScalacOptions.privateWarnValueDiscard + ) + ) } // for sbt-github-actions -ThisBuild / crossScalaVersions := Seq("2.13.8", "2.12.15") +ThisBuild / crossScalaVersions := Seq("2.13.8", "2.12.16") ThisBuild / githubWorkflowBuild := Seq( WorkflowStep.Sbt(name = Some("Check project"), commands = List("scalafmtCheckAll", "headerCheckAll")), WorkflowStep.Sbt(name = Some("Build project"), commands = List("test"))