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 34
34
runs-on : ${{ matrix.os }}
35
35
timeout-minutes : 60
36
36
steps :
37
+ - name : Install sbt
38
+ if : contains(runner.os, 'macos')
39
+ run : brew install sbt
40
+
37
41
- name : Checkout current branch (full)
38
42
uses : actions/checkout@v4
39
43
with :
@@ -111,6 +115,10 @@ jobs:
111
115
java : [temurin@17]
112
116
runs-on : ${{ matrix.os }}
113
117
steps :
118
+ - name : Install sbt
119
+ if : contains(runner.os, 'macos')
120
+ run : brew install sbt
121
+
114
122
- name : Checkout current branch (full)
115
123
uses : actions/checkout@v4
116
124
with :
@@ -192,6 +200,10 @@ jobs:
192
200
java : [temurin@17]
193
201
runs-on : ${{ matrix.os }}
194
202
steps :
203
+ - name : Install sbt
204
+ if : contains(runner.os, 'macos')
205
+ run : brew install sbt
206
+
195
207
- name : Checkout current branch (full)
196
208
uses : actions/checkout@v4
197
209
with :
@@ -224,6 +236,10 @@ jobs:
224
236
java : [temurin@17]
225
237
runs-on : ${{ matrix.os }}
226
238
steps :
239
+ - name : Install sbt
240
+ if : contains(runner.os, 'macos')
241
+ run : brew install sbt
242
+
227
243
- name : Checkout current branch (full)
228
244
uses : actions/checkout@v4
229
245
with :
You can’t perform that action at this time.
0 commit comments