Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.
Merged
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
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin
java-version: 21
- name: Setup sbt launcher
uses: sbt/setup-sbt@v1
- name: Run tests
run: sbt test
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ organization := "com.signalpath"
version := "1.2"

lazy val versions = new {
val scala212 = "2.12.11"
val scala213 = "2.13.10"
val scala212 = "2.12.20"
val scala213 = "2.13.15"
val supportedScalaVersions = List(scala212, scala213)
}

crossScalaVersions := versions.supportedScalaVersions

libraryDependencies ++= Seq(
"co.fs2" %% "fs2-core" % "2.5.6",
"com.github.alonsodomin.cron4s" %% "cron4s-core" % "0.6.1",
"eu.timepit" %% "fs2-cron-cron4s" % "0.5.0",
"org.typelevel" %% "cats-core" % "2.6.1",
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
"org.scalamock" %% "scalamock" % "5.2.0" % Test,
"co.fs2" %% "fs2-core" % "2.5.10",
"com.github.alonsodomin.cron4s" %% "cron4s-core" % "0.6.1", // tied to fs2-cron-cron4s below
"eu.timepit" %% "fs2-cron-cron4s" % "0.5.0", // code needs to be reworked if we want to up these
"org.typelevel" %% "cats-core" % "2.13.0",
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
"org.scalamock" %% "scalamock" % "6.1.1" % Test,
)

bintrayOrganization := Some("signalpath")
Expand Down
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=1.10.7
Loading