@@ -108,26 +108,26 @@ jobs:
108
108
109
109
- name : Check headers and formatting
110
110
if : matrix.java == 'temurin@8'
111
- run : sbt '++${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck
111
+ run : sbt '++ ${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck
112
112
113
113
- name : Test
114
- run : sbt '++${{ matrix.scala }}' test
114
+ run : sbt '++ ${{ matrix.scala }}' test
115
115
116
116
- name : Check binary compatibility
117
117
if : matrix.java == 'temurin@8'
118
- run : sbt '++${{ matrix.scala }}' mimaReportBinaryIssues
118
+ run : sbt '++ ${{ matrix.scala }}' mimaReportBinaryIssues
119
119
120
120
- name : Generate API documentation
121
121
if : matrix.java == 'temurin@8'
122
- run : sbt '++${{ matrix.scala }}' doc
122
+ run : sbt '++ ${{ matrix.scala }}' doc
123
123
124
124
- name : Check scalafix lints
125
125
if : matrix.java == 'temurin@8' && !startsWith(matrix.scala, '3.')
126
- run : sbt '++${{ matrix.scala }}' 'scalafixAll --check'
126
+ run : sbt '++ ${{ matrix.scala }}' 'scalafixAll --check'
127
127
128
128
- name : Check unused compile dependencies
129
129
if : matrix.java == 'temurin@8'
130
- run : sbt '++${{ matrix.scala }}' unusedCompileDependenciesTest
130
+ run : sbt '++ ${{ matrix.scala }}' unusedCompileDependenciesTest
131
131
132
132
- name : Make target directories
133
133
if : github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
@@ -252,4 +252,4 @@ jobs:
252
252
(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)
253
253
254
254
- name : Publish
255
- run : sbt '++${{ matrix.scala }}' tlRelease
255
+ run : sbt '++ ${{ matrix.scala }}' tlRelease
0 commit comments