Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Commit

Permalink
Update scala-library to 2.12.16 (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Jul 8, 2022
1 parent 072f1e1 commit 143fcb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
14 changes: 8 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down

0 comments on commit 143fcb0

Please sign in to comment.