diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8a0fb5..7a69dce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,7 @@ jobs: matrix: os: [ubuntu-latest] scala: + - 2.13.13 - 2.13.12 - 2.13.11 - 2.13.10 @@ -92,7 +93,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.12] + scala: [2.13.13] java: [temurin@17] runs-on: ${{ matrix.os }} steps: @@ -120,6 +121,16 @@ jobs: ~/Library/Caches/Coursier/v1 key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} + - name: Download target directories (2.13.13) + uses: actions/download-artifact@v2 + with: + name: target-${{ matrix.os }}-2.13.13-${{ matrix.java }} + + - name: Inflate target directories (2.13.13) + run: | + tar xf targets.tar + rm targets.tar + - name: Download target directories (2.13.12) uses: actions/download-artifact@v2 with: diff --git a/build.sbt b/build.sbt index 9511f15..b915afa 100644 --- a/build.sbt +++ b/build.sbt @@ -20,8 +20,10 @@ def crossSources = Def.settings( inThisBuild(Seq( organization := "com.github.ghik", scalaVersion := crossScalaVersions.value.head, - crossScalaVersions := Seq("2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", - "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12"), + crossScalaVersions := Seq( + "2.13.13", "2.13.12", "2.13.11", "2.13.10", "2.13.9", "2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", + "2.12.19", "2.12.18", "2.12.17", "2.12.16", "2.12.15", "2.12.14", "2.12.13", "2.11.12" + ), githubWorkflowTargetTags ++= Seq("v*"), githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17")),