File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 3434 runs-on : ${{ matrix.os }}
3535 timeout-minutes : 60
3636 steps :
37+ - name : Install sbt
38+ if : contains(runner.os, 'macos')
39+ run : brew install sbt
40+
3741 - name : Checkout current branch (full)
3842 uses : actions/checkout@v4
3943 with :
@@ -103,6 +107,10 @@ jobs:
103107 java : [temurin@11]
104108 runs-on : ${{ matrix.os }}
105109 steps :
110+ - name : Install sbt
111+ if : contains(runner.os, 'macos')
112+ run : brew install sbt
113+
106114 - name : Checkout current branch (full)
107115 uses : actions/checkout@v4
108116 with :
@@ -244,6 +252,10 @@ jobs:
244252 java : [temurin@11]
245253 runs-on : ${{ matrix.os }}
246254 steps :
255+ - name : Install sbt
256+ if : contains(runner.os, 'macos')
257+ run : brew install sbt
258+
247259 - name : Checkout current branch (full)
248260 uses : actions/checkout@v4
249261 with :
Original file line number Diff line number Diff line change 1- addSbtPlugin(" org.typelevel" % " sbt-typelevel" % " 0.7.1 " )
1+ addSbtPlugin(" org.typelevel" % " sbt-typelevel" % " 0.7.2 " )
22addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.16.0" )
33addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.4.17" )
44addSbtPlugin(" pl.project13.scala" % " sbt-jmh" % " 0.4.7" )
You can’t perform that action at this time.
0 commit comments