Skip to content

Commit

Permalink
Scala 2.13.14
Browse files Browse the repository at this point in the history
  • Loading branch information
ne-sachirou committed May 9, 2024
1 parent 7f0d64c commit 5359d6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ jobs:
fail-fast: false
matrix:
jdk: [ 11 ]
scala: [ 2.13.10 ]
scala: [ 2.13.14 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.jdk }}
cache: sbt
- run: sbt -v ++${{ matrix.scala }} test

6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name := "snowflake-lib"

version := "1.1.0-SNAPSHOT"

scalaVersion := "2.13.10"
scalaVersion := "2.13.14"

libraryDependencies ++= Seq(
"org.specs2" %% "specs2-core" % "4.8.3" % Test,
"junit" % "junit" % "4.13" % Test
"org.specs2" % "specs2-core_2.13" % "4.20.6" % Test,
"junit" % "junit" % "4.13.2" % Test
)

0 comments on commit 5359d6f

Please sign in to comment.