File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 48
48
runs-on : ${{ matrix.os }}
49
49
timeout-minutes : 60
50
50
steps :
51
+ - name : Install sbt
52
+ if : contains(runner.os, 'macos')
53
+ run : brew install sbt
54
+
51
55
- name : Checkout current branch (full)
52
56
uses : actions/checkout@v4
53
57
with :
@@ -151,6 +155,10 @@ jobs:
151
155
java : [temurin@8]
152
156
runs-on : ${{ matrix.os }}
153
157
steps :
158
+ - name : Install sbt
159
+ if : contains(runner.os, 'macos')
160
+ run : brew install sbt
161
+
154
162
- name : Checkout current branch (full)
155
163
uses : actions/checkout@v4
156
164
with :
@@ -288,6 +296,10 @@ jobs:
288
296
java : [temurin@8]
289
297
runs-on : ${{ matrix.os }}
290
298
steps :
299
+ - name : Install sbt
300
+ if : contains(runner.os, 'macos')
301
+ run : brew install sbt
302
+
291
303
- name : Checkout current branch (full)
292
304
uses : actions/checkout@v4
293
305
with :
@@ -346,6 +358,10 @@ jobs:
346
358
java : [temurin@11]
347
359
runs-on : ${{ matrix.os }}
348
360
steps :
361
+ - name : Install sbt
362
+ if : contains(runner.os, 'macos')
363
+ run : brew install sbt
364
+
349
365
- name : Checkout current branch (full)
350
366
uses : actions/checkout@v4
351
367
with :
You can’t perform that action at this time.
0 commit comments