From 3eacd1519be3b359c50bb6a7a4e6a58cdcb345c5 Mon Sep 17 00:00:00 2001 From: etorreborre Date: Mon, 13 May 2024 18:05:48 +0200 Subject: [PATCH] project: update the CI file --- .github/workflows/ci.yml | 4 ++-- build.sbt | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4b22aed7..f4bd7df23 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.17] + scala: [2.13.14, 2.12.17] java: [temurin@8] runs-on: ${{ matrix.os }} steps: @@ -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: diff --git a/build.sbt b/build.sbt index c25f75549..1f50357d4 100644 --- a/build.sbt +++ b/build.sbt @@ -429,7 +429,6 @@ lazy val compilationSettings = Seq( "-unchecked", "-feature", "-language:_", - "-Wunused:-nowarn", ), Compile / scalacOptions ++= { CrossVersion.partialVersion(scalaVersion.value) match { @@ -440,7 +439,9 @@ lazy val compilationSettings = Seq( "-Ywarn-unused:-nowarn" ) case _ => - Nil + Seq( + "-Wunused:-nowarn", + ) } }, scalacOptions ++= {