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 :
@@ -103,6 +107,10 @@ jobs:
103
107
java : [temurin@8]
104
108
runs-on : ${{ matrix.os }}
105
109
steps :
110
+ - name : Install sbt
111
+ if : contains(runner.os, 'macos')
112
+ run : brew install sbt
113
+
106
114
- name : Checkout current branch (full)
107
115
uses : actions/checkout@v4
108
116
with :
@@ -244,6 +252,10 @@ jobs:
244
252
java : [temurin@8]
245
253
runs-on : ${{ matrix.os }}
246
254
steps :
255
+ - name : Install sbt
256
+ if : contains(runner.os, 'macos')
257
+ run : brew install sbt
258
+
247
259
- name : Checkout current branch (full)
248
260
uses : actions/checkout@v4
249
261
with :
You can’t perform that action at this time.
0 commit comments