This is an automated email from the ASF dual-hosted git repository.
He-Pin pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/pekko-persistence-dynamodb.git
The following commit(s) were added to refs/heads/main by this push:
new 9c05f23 feat: add Scala 3.8.4 cross-compilation target for testing
(#332)
9c05f23 is described below
commit 9c05f235d6629c4fa9a7ba5fd8ae6f4eab9a5166
Author: He-Pin(kerr) <[email protected]>
AuthorDate: Sun Jul 5 19:37:11 2026 +0800
feat: add Scala 3.8.4 cross-compilation target for testing (#332)
Motivation:
Ensure pekko-persistence-dynamodb compiles and tests pass on the next Scala
3 release line.
Modification:
Add 3.8.4 to crossScalaVersions and CI matrix.
Result:
CI now tests against Scala 2.13, 3.3, and 3.8.
Tests:
Not run - CI will validate
References:
None - proactive compatibility testing
---
.github/workflows/check-build-test.yml | 1 +
build.sbt | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/check-build-test.yml
b/.github/workflows/check-build-test.yml
index dd12b16..3450c2b 100644
--- a/.github/workflows/check-build-test.yml
+++ b/.github/workflows/check-build-test.yml
@@ -84,6 +84,7 @@ jobs:
include:
- { java-version: 17, scala-version: 2.13, sbt-opts: '' }
- { java-version: 17, scala-version: 3.3, sbt-opts: '' }
+ - { java-version: 17, scala-version: 3.8, sbt-opts: '' }
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #
v7.0.0
diff --git a/build.sbt b/build.sbt
index 12fdb38..d7470ea 100644
--- a/build.sbt
+++ b/build.sbt
@@ -46,7 +46,7 @@ lazy val root = Project(
.settings(
name := "pekko-persistence-dynamodb",
scalaVersion := "2.13.18",
- crossScalaVersions := Seq("2.13.18", "3.3.8"),
+ crossScalaVersions := Seq("2.13.18", "3.3.8", "3.8.4"),
crossVersion := CrossVersion.binary,
libraryDependencies ++= Seq(
"com.amazonaws" % "aws-java-sdk-core" % amzVersion,
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]