Skip to content

Commit 92632dc

Browse files
Run prePR with sbt-typelevel
Executed command: sbt tlPrePrBotHook
1 parent f47ec30 commit 92632dc

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/workflows/ci.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,40 @@ jobs:
296296
- name: Publish
297297
run: sbt '++ ${{ matrix.scala }}' tlCiRelease
298298

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+
299333
site:
300334
name: Generate Site
301335
strategy:

0 commit comments

Comments
 (0)