generated from softwaremill/sbt-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from softwaremill/foo-5
upd
- Loading branch information
Showing
8 changed files
with
39 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ jobs: | |
name: automerge | ||
uses: "pascalgn/[email protected]" | ||
env: | ||
GITHUB_TOKEN: "${{ secrets.REPO_GITHUB_TOKEN }}" | ||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
|
||
|
||
object Main { | ||
def main(args: Array[String]) = println("hello world") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
|
||
import org.scalatest.matchers.should.Matchers | ||
import org.scalatest.flatspec.AnyFlatSpec | ||
class MySpec extends AnyFlatSpec with Matchers { | ||
"This" should "do" in { | ||
1 + 2 should be (3) | ||
1 + 2 should be(3) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import sbt.* | ||
|
||
object Dependencies { | ||
|
||
lazy val cats: Seq[ModuleID] = Seq( | ||
"org.typelevel" %% "cats-core" % Versions.cats, | ||
"org.typelevel" %% "cats-effect" % Versions.catsEffect | ||
) | ||
|
||
lazy val http4s: Seq[ModuleID] = Seq( | ||
"org.http4s" %% "http4s-ember-client" % Versions.http4s, | ||
"org.http4s" %% "http4s-ember-server" % Versions.http4s, | ||
"org.http4s" %% "http4s-circe" % Versions.http4s, | ||
"org.http4s" %% "http4s-dsl" % Versions.http4s | ||
) | ||
|
||
lazy val scalaTest: Seq[ModuleID] = Seq( | ||
"org.scalatest" %% "scalatest" % Versions.scalaTest % Test | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
object Versions { | ||
val cats = "2.10.0" | ||
val catsEffect = "3.5.2" | ||
val http4s = "0.23.21" | ||
val scalaTest = "3.2.17" | ||
} |