File tree 1 file changed +12
-0
lines changed
1 file changed +12
-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 :
@@ -99,6 +103,10 @@ jobs:
99
103
java : [temurin@8]
100
104
runs-on : ${{ matrix.os }}
101
105
steps :
106
+ - name : Install sbt
107
+ if : contains(runner.os, 'macos')
108
+ run : brew install sbt
109
+
102
110
- name : Checkout current branch (full)
103
111
uses : actions/checkout@v4
104
112
with :
@@ -210,6 +218,10 @@ jobs:
210
218
java : [temurin@8]
211
219
runs-on : ${{ matrix.os }}
212
220
steps :
221
+ - name : Install sbt
222
+ if : contains(runner.os, 'macos')
223
+ run : brew install sbt
224
+
213
225
- name : Checkout current branch (full)
214
226
uses : actions/checkout@v4
215
227
with :
You can’t perform that action at this time.
0 commit comments