Skip to content

Commit

Permalink
project: update the CI file
Browse files Browse the repository at this point in the history
  • Loading branch information
etorreborre committed May 13, 2024
1 parent e458fa4 commit 3eacd15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .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.17]
scala: [2.13.14, 2.12.17]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.10]
scala: [2.13.14]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ lazy val compilationSettings = Seq(
"-unchecked",
"-feature",
"-language:_",
"-Wunused:-nowarn",
),
Compile / scalacOptions ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
Expand All @@ -440,7 +439,9 @@ lazy val compilationSettings = Seq(
"-Ywarn-unused:-nowarn"
)
case _ =>
Nil
Seq(
"-Wunused:-nowarn",
)
}
},
scalacOptions ++= {
Expand Down

0 comments on commit 3eacd15

Please sign in to comment.