Skip to content

Commit

Permalink
ci.sbt: docker compose V2
Browse files Browse the repository at this point in the history
Needed because of actions/runner-images#9692
  • Loading branch information
nafg committed Aug 16, 2024
1 parent 510c94f commit 761094a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inThisBuild(List(
githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")),
githubWorkflowTargetTags ++= Seq("v*"),
githubWorkflowBuild := Seq(
WorkflowStep.Run(List("docker-compose up -d mysql postgres"), name = Some("Start databases")),
WorkflowStep.Run(List("docker compose up -d mysql postgres"), name = Some("Start databases")),
WorkflowStep.Sbt(List("-Dslick.testkit-config=test-dbs/testkit-github.conf", "test"), name = Some("Build project"))
),
githubWorkflowPublishTargetBranches := Seq(RefPredicate.StartsWith(Ref.Tag("v"))),
Expand Down

0 comments on commit 761094a

Please sign in to comment.