Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
include:
# stage="test" if no stage is specified
- name: test 2.13 & jdk11
scala: [ 2.13.3 ]
scala: [ 2.13.5 ]
jdk: openjdk11
script: sbt ++$TRAVIS_SCALA_VERSION test
- name: test 2.13 & jdk8
scala: [ 2.13.3 ]
scala: [ 2.13.5 ]
jdk: openjdk8
script: sbt ++$TRAVIS_SCALA_VERSION test
- name: test 2.12 & jdk11
Expand All @@ -31,7 +31,7 @@ jobs:
jdk: openjdk8
script: sbt ++$TRAVIS_SCALA_VERSION test
- name: coverage
scala: [ 2.13.3 ]
scala: [ 2.13.5 ]
jdk: openjdk11
script: sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport
# run ci-release only if previous stages passed
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name := "TypedAPI"
// see https://www.scala-sbt.org/1.x/docs/Cross-Build.html
// can't build for 2.11 as doobie is no longer available for scala 2.11
scalaVersion := "2.12.12"
crossScalaVersions := List("2.12.12", "2.13.3")
crossScalaVersions := List("2.12.12", "2.13.5")

// publishing informations
organization := "fr.loicknuchel"
Expand Down