File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -267,3 +267,28 @@ jobs:
267
267
with :
268
268
modules-ignore : diffsonjvm_2.12 diffsonjvm_2.13 diffsonjvm_3 diffsonjs_2.12 diffsonjs_2.13 diffsonjs_3 diffson-benchmarks_2.12 diffson-benchmarks_2.13 diffson-benchmarks_3 diffsonnative_2.12 diffsonnative_2.13 diffsonnative_3
269
269
configs-ignore : test scala-tool scala-doc-tool test-internal
270
+
271
+ validate-steward :
272
+ name : Validate Steward Config
273
+ strategy :
274
+ matrix :
275
+ os : [ubuntu-latest]
276
+ java : [temurin@11]
277
+ runs-on : ${{ matrix.os }}
278
+ steps :
279
+ - name : Checkout current branch (fast)
280
+ uses : actions/checkout@v4
281
+
282
+ - name : Setup Java (temurin@11)
283
+ id : setup-java-temurin-11
284
+ if : matrix.java == 'temurin@11'
285
+ uses : actions/setup-java@v4
286
+ with :
287
+ distribution : temurin
288
+ java-version : 11
289
+
290
+ - uses : coursier/setup-action@v1
291
+ with :
292
+ apps : scala-steward
293
+
294
+ - run : scala-steward validate-repo-config .scala-steward.conf
You can’t perform that action at this time.
0 commit comments