Skip to content

Commit

Permalink
docs: Default Scala quickstart to Scala 3, test on both 3 and 2.13 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren authored Sep 24, 2024
1 parent ccc8607 commit e855bb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Publish artifacts locally
run: |-
sbt "publishLocal; publishM2"
sbt "+publishLocal; publishM2"
- name: Test akka-http-quickstart-java
run: |-
Expand All @@ -63,7 +63,8 @@ jobs:
- name: Test akka-http-quickstart-scala
run: |-
cd samples/akka-http-quickstart-scala
sbt test -Dakka-http.version=`cat ~/.version`
sbt "++2.13.14!; test;" -Dakka-http.version=`cat ~/.version`
sbt "clean; test;" -Dakka-http.version=`cat ~/.version`
- name: Email on failure
if: ${{ failure() }}
Expand Down
2 changes: 1 addition & 1 deletion samples/akka-http-quickstart-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.13.14"
scalaVersion := "3.3.3"
)),
name := "akka-http-quickstart",
libraryDependencies ++= Seq(
Expand Down

0 comments on commit e855bb3

Please sign in to comment.