Skip to content

Commit

Permalink
CommunitySuite: add versions of playframework
Browse files Browse the repository at this point in the history
  • Loading branch information
kitbellew committed Oct 7, 2024
1 parent 33fdb31 commit 1dfda84
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package org.scalafmt.community.other

import org.scalafmt.community.common.CommunityRepoSuite

import scala.meta._

abstract class CommunityPlayFrameworkSuite(name: String)
extends CommunityRepoSuite(
"https://github.com/playframework/playframework.git",
name,
)

class CommunityPlayFramework_2_9_Suite
extends CommunityPlayFrameworkSuite("playframework-2.9") {

override protected def builds = Seq(getBuild("2.9.5", dialects.Scala213, 454))

}

class CommunityPlayFramework_3_0_Suite
extends CommunityPlayFrameworkSuite("playframework-3.0") {

override protected def builds = Seq(getBuild("3.0.5", dialects.Scala213, 454))

}

0 comments on commit 1dfda84

Please sign in to comment.