Skip to content

Commit 25b1355

Browse files
Regenerate GitHub Actions workflow
Executed command: sbt githubWorkflowGenerate
1 parent d2ff9f9 commit 25b1355

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

+12
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ jobs:
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@8]
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@8]
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:

0 commit comments

Comments
 (0)