@@ -112,26 +112,26 @@ jobs:
112112
113113 - name : Check headers and formatting
114114 if : matrix.java == 'temurin@8'
115- run : sbt '++${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck
115+ run : sbt '++ ${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck
116116
117117 - name : Test
118- run : sbt '++${{ matrix.scala }}' test
118+ run : sbt '++ ${{ matrix.scala }}' test
119119
120120 - name : Check binary compatibility
121121 if : matrix.java == 'temurin@8'
122- run : sbt '++${{ matrix.scala }}' mimaReportBinaryIssues
122+ run : sbt '++ ${{ matrix.scala }}' mimaReportBinaryIssues
123123
124124 - name : Generate API documentation
125125 if : matrix.java == 'temurin@8'
126- run : sbt '++${{ matrix.scala }}' doc
126+ run : sbt '++ ${{ matrix.scala }}' doc
127127
128128 - name : Check scalafix lints
129129 if : matrix.java == 'temurin@8' && !startsWith(matrix.scala, '3.')
130- run : sbt '++${{ matrix.scala }}' 'scalafixAll --check'
130+ run : sbt '++ ${{ matrix.scala }}' 'scalafixAll --check'
131131
132132 - name : Check unused compile dependencies
133133 if : matrix.java == 'temurin@8'
134- run : sbt '++${{ matrix.scala }}' unusedCompileDependenciesTest
134+ run : sbt '++ ${{ matrix.scala }}' unusedCompileDependenciesTest
135135
136136 - name : Make target directories
137137 if : github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
@@ -266,7 +266,7 @@ jobs:
266266 (echo "$PGP_PASSPHRASE"; echo; echo) | gpg --command-fd 0 --pinentry-mode loopback --change-passphrase $(gpg --list-secret-keys --with-colons 2> /dev/null | grep '^sec:' | cut --delimiter ':' --fields 5 | tail -n 1)
267267
268268 - name : Publish
269- run : sbt '++${{ matrix.scala }}' tlRelease
269+ run : sbt '++ ${{ matrix.scala }}' tlRelease
270270
271271 site :
272272 name : Generate Site
@@ -343,7 +343,7 @@ jobs:
343343 key : ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
344344
345345 - name : Generate site
346- run : sbt '++${{ matrix.scala }}' docs/tlSite
346+ run : sbt '++ ${{ matrix.scala }}' docs/tlSite
347347
348348 - name : Publish site
349349 if : github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
0 commit comments