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 @@ -139,3 +139,37 @@ jobs:
139139
140140 - name : Publish
141141 run : sbt '++ ${{ matrix.scala }}' tlCiRelease
142+
143+ validate-steward :
144+ name : Validate Steward Config
145+ strategy :
146+ matrix :
147+ os : [ubuntu-latest]
148+ scala : [2.13.6]
149+ java : [temurin@11]
150+ runs-on : ${{ matrix.os }}
151+ steps :
152+ - name : Checkout current branch (fast)
153+ uses : actions/checkout@v3
154+
155+ - name : Download Java (temurin@17)
156+ id : download-java-temurin-17
157+ if : matrix.java == 'temurin@17'
158+ uses : typelevel/download-java@v2
159+ with :
160+ distribution : temurin
161+ java-version : 17
162+
163+ - name : Setup Java (temurin@17)
164+ if : matrix.java == 'temurin@17'
165+ uses : actions/setup-java@v3
166+ with :
167+ distribution : jdkfile
168+ java-version : 17
169+ jdkFile : ${{ steps.download-java-temurin-17.outputs.jdkFile }}
170+
171+ - uses : coursier/setup-action@v1
172+ with :
173+ apps : scala-steward
174+
175+ - run : scala-steward validate-repo-config .scala-steward.conf
You can’t perform that action at this time.
0 commit comments