Skip to content

Commit b45d75b

Browse files
committed
.
1 parent d6527ff commit b45d75b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
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
@@ -52,8 +52,8 @@ jobs:
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

build.mill

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import com.goyeau.mill.scalafix.ScalafixModule
1313
import java.text.Format
1414

1515
object 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{
2122
trait FormatFix extends ScalafmtModule with ScalafixModule with ScalaModule
2223

2324
trait 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

5859
object 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

7879
object 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}",

0 commit comments

Comments
 (0)