|
51 | 51 | runs-on: ${{ matrix.os }}
|
52 | 52 | timeout-minutes: 60
|
53 | 53 | steps:
|
| 54 | + - name: Install sbt |
| 55 | + if: contains(runner.os, 'macos') |
| 56 | + run: brew install sbt |
| 57 | + |
54 | 58 | - name: Checkout current branch (full)
|
55 | 59 | uses: actions/checkout@v4
|
56 | 60 | with:
|
@@ -146,6 +150,10 @@ jobs:
|
146 | 150 | java: [temurin@8]
|
147 | 151 | runs-on: ${{ matrix.os }}
|
148 | 152 | steps:
|
| 153 | + - name: Install sbt |
| 154 | + if: contains(runner.os, 'macos') |
| 155 | + run: brew install sbt |
| 156 | + |
149 | 157 | - name: Checkout current branch (full)
|
150 | 158 | uses: actions/checkout@v4
|
151 | 159 | with:
|
@@ -313,6 +321,10 @@ jobs:
|
313 | 321 | java: [temurin@8]
|
314 | 322 | runs-on: ${{ matrix.os }}
|
315 | 323 | steps:
|
| 324 | + - name: Install sbt |
| 325 | + if: contains(runner.os, 'macos') |
| 326 | + run: brew install sbt |
| 327 | + |
316 | 328 | - name: Checkout current branch (full)
|
317 | 329 | uses: actions/checkout@v4
|
318 | 330 | with:
|
@@ -396,6 +408,10 @@ jobs:
|
396 | 408 | java: [temurin@8]
|
397 | 409 | runs-on: ${{ matrix.os }}
|
398 | 410 | steps:
|
| 411 | + - name: Install sbt |
| 412 | + if: contains(runner.os, 'macos') |
| 413 | + run: brew install sbt |
| 414 | + |
399 | 415 | - name: Checkout current branch (full)
|
400 | 416 | uses: actions/checkout@v4
|
401 | 417 | with:
|
@@ -453,6 +469,10 @@ jobs:
|
453 | 469 | java: [temurin@17]
|
454 | 470 | runs-on: ${{ matrix.os }}
|
455 | 471 | steps:
|
| 472 | + - name: Install sbt |
| 473 | + if: contains(runner.os, 'macos') |
| 474 | + run: brew install sbt |
| 475 | + |
456 | 476 | - name: Checkout current branch (full)
|
457 | 477 | uses: actions/checkout@v4
|
458 | 478 | with:
|
|
0 commit comments