File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -296,6 +296,40 @@ jobs:
296
296
- name : Publish
297
297
run : sbt '++ ${{ matrix.scala }}' tlCiRelease
298
298
299
+ validate-steward :
300
+ name : Validate Steward Config
301
+ strategy :
302
+ matrix :
303
+ os : [ubuntu-latest]
304
+ scala : [2.13.6]
305
+ java : [temurin@11]
306
+ runs-on : ${{ matrix.os }}
307
+ steps :
308
+ - name : Checkout current branch (fast)
309
+ uses : actions/checkout@v3
310
+
311
+ - name : Download Java (temurin@17)
312
+ id : download-java-temurin-17
313
+ if : matrix.java == 'temurin@17'
314
+ uses : typelevel/download-java@v2
315
+ with :
316
+ distribution : temurin
317
+ java-version : 17
318
+
319
+ - name : Setup Java (temurin@17)
320
+ if : matrix.java == 'temurin@17'
321
+ uses : actions/setup-java@v3
322
+ with :
323
+ distribution : jdkfile
324
+ java-version : 17
325
+ jdkFile : ${{ steps.download-java-temurin-17.outputs.jdkFile }}
326
+
327
+ - uses : coursier/setup-action@v1
328
+ with :
329
+ apps : scala-steward
330
+
331
+ - run : scala-steward validate-repo-config .scala-steward.conf
332
+
299
333
site :
300
334
name : Generate Site
301
335
strategy :
You can’t perform that action at this time.
0 commit comments