From 2f788d09473de75687778bb116e0fe6f382e6daa Mon Sep 17 00:00:00 2001 From: Connor James Smith Date: Fri, 28 Jul 2023 21:20:03 -0400 Subject: [PATCH] using scala 3 features, it's scala 3 only time --- .github/workflows/ci.yml | 12 +----------- build.sbt | 3 +-- 2 files changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29172d6..408a2b1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13, 3] + scala: [3] java: [temurin@8] runs-on: ${{ matrix.os }} timeout-minutes: 60 @@ -112,16 +112,6 @@ jobs: if: matrix.java == 'temurin@8' && steps.setup-java-temurin-8.outputs.cache-hit == 'false' run: sbt reload +update - - name: Download target directories (2.13) - uses: actions/download-artifact@v3 - with: - name: target-${{ matrix.os }}-${{ matrix.java }}-2.13 - - - name: Inflate target directories (2.13) - run: | - tar xf targets.tar - rm targets.tar - - name: Download target directories (3) uses: actions/download-artifact@v3 with: diff --git a/build.sbt b/build.sbt index a994ad6..6a749de 100644 --- a/build.sbt +++ b/build.sbt @@ -8,8 +8,7 @@ ThisBuild / developers ++= List( ) val Scala3 = "3.3.0" -ThisBuild / crossScalaVersions := Seq("2.13.11", Scala3) -ThisBuild / scalaVersion := Scala3 +ThisBuild / scalaVersion := Scala3 val Http4sVersion = "1.0.0-M40"