Skip to content

Commit

Permalink
Merge pull request #71 from mkurz/scala_2.13.8
Browse files Browse the repository at this point in the history
Add Scala 2.13.8
  • Loading branch information
ghik authored Jan 12, 2022
2 parents c980440 + 4078768 commit 0a92050
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
matrix:
os: [ubuntu-latest]
scala:
- 2.13.8
- 2.13.7
- 2.13.6
- 2.13.5
Expand Down Expand Up @@ -81,7 +82,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.13.7]
scala: [2.13.8]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -107,6 +108,16 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (2.13.8)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.13.8-${{ matrix.java }}

- name: Inflate target directories (2.13.8)
run: |
tar xf targets.tar
rm targets.tar
- name: Download target directories (2.13.7)
uses: actions/download-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def crossSources = Def.settings(
inThisBuild(Seq(
organization := "com.github.ghik",
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := Seq("2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", "2.12.15", "2.12.14", "2.12.13", "2.11.12"),
crossScalaVersions := Seq("2.13.8", "2.13.7", "2.13.6", "2.13.5", "2.13.4", "2.13.3", "2.13.2", "2.12.15", "2.12.14", "2.12.13", "2.11.12"),

githubWorkflowTargetTags ++= Seq("v*"),
githubWorkflowJavaVersions := Seq("[email protected]"),
Expand Down

0 comments on commit 0a92050

Please sign in to comment.