File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 3939
4040 - name : Install required libraries
4141 run : sudo apt-get update && sudo apt-get install -y libgtk-4-dev libgraphene-1.0-dev libavif-dev
42-
42+
4343 - name : Cache Playwright dependencies
4444 id : cache-pw
4545 uses : actions/cache@v2
5252 - name : formatCheck
5353 run : ./mill mill.scalalib.scalafmt.ScalafmtModule/checkFormatAll __.sources
5454
55- - name : Install Playwright
56- run : just setupPlaywright
55+ - name : playwright
56+ run : cs launch com.microsoft.playwright:playwright:1.51.0 -M "com.microsoft.playwright.CLI" -- install chromium --only-shell
5757
5858 - name : compile
5959 run : ./mill __.compile
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import com.goyeau.mill.scalafix.ScalafixModule
1313import java.text.Format
1414
1515object V{
16+ val scalaLts = "3.3.5"
1617
1718 val http4sVersion = "0.23.30"
1819 val circeVersion = "0.14.10"
@@ -21,7 +22,7 @@ object V{
2122trait FormatFix extends ScalafmtModule with ScalafixModule with ScalaModule
2223
2324trait FormatFixPublish extends ScalaModule with FormatFix with PublishModule{
24- override def scalaVersion = "3.6.2 "
25+ override def scalaVersion = "3.6.4 "
2526
2627 override def scalacOptions: Target[Seq[String]] = super.scalacOptions() ++ Seq("-Wunused:all")
2728
@@ -57,7 +58,7 @@ trait Testy extends TestModule.Munit with FormatFix {
5758
5859object routes extends FormatFixPublish {
5960
60- def scalaVersion: T[String] = "3.3.5" // Latest LTS
61+ def scalaVersion: T[String] = V.scalaLts
6162
6263 def ivyDeps = Agg(
6364 ivy"org.http4s::http4s-core:${V.http4sVersion}",
@@ -77,7 +78,7 @@ object routes extends FormatFixPublish {
7778
7879object sjsls extends FormatFixPublish {
7980
80- override def scalaVersion = "3.3.3" // Latest LTSs
81+ override def scalaVersion = V.scalaLts
8182
8283 def ivyDeps = super.ivyDeps() ++ Seq(
8384 ivy"org.http4s::http4s-ember-server::${V.http4sVersion}",
You can’t perform that action at this time.
0 commit comments