|
29 | 29 | fail-fast: false |
30 | 30 | matrix: |
31 | 31 | os: [ubuntu-latest] |
32 | | - scala: [3.2.0, 2.12.17, 2.13.10] |
| 32 | + scala: [3.2.1, 2.12.17, 2.13.10] |
33 | 33 | java: [temurin@8] |
34 | 34 | runs-on: ${{ matrix.os }} |
35 | 35 | steps: |
@@ -71,29 +71,29 @@ jobs: |
71 | 71 |
|
72 | 72 | - name: Check headers and formatting |
73 | 73 | if: matrix.java == 'temurin@8' |
74 | | - run: sbt '++${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck |
| 74 | + run: sbt '++ ${{ matrix.scala }}' headerCheckAll scalafmtCheckAll 'project /' scalafmtSbtCheck |
75 | 75 |
|
76 | 76 | - name: Test |
77 | | - run: sbt '++${{ matrix.scala }}' test |
| 77 | + run: sbt '++ ${{ matrix.scala }}' test |
78 | 78 |
|
79 | 79 | - name: Check binary compatibility |
80 | 80 | if: matrix.java == 'temurin@8' |
81 | | - run: sbt '++${{ matrix.scala }}' mimaReportBinaryIssues |
| 81 | + run: sbt '++ ${{ matrix.scala }}' mimaReportBinaryIssues |
82 | 82 |
|
83 | 83 | - name: Generate API documentation |
84 | 84 | if: matrix.java == 'temurin@8' |
85 | | - run: sbt '++${{ matrix.scala }}' doc |
| 85 | + run: sbt '++ ${{ matrix.scala }}' doc |
86 | 86 |
|
87 | 87 | - name: Check Java formatting |
88 | | - run: sbt '++${{ matrix.scala }}' '${{ matrix.ci }}' javafmtCheckAll |
| 88 | + run: sbt '++ ${{ matrix.scala }}' '${{ matrix.ci }}' javafmtCheckAll |
89 | 89 |
|
90 | 90 | - name: Check scalafix lints |
91 | 91 | if: matrix.java == 'temurin@8' && !startsWith(matrix.scala, '3.') |
92 | | - run: sbt '++${{ matrix.scala }}' 'scalafixAll --check' |
| 92 | + run: sbt '++ ${{ matrix.scala }}' 'scalafixAll --check' |
93 | 93 |
|
94 | 94 | - name: Check unused compile dependencies |
95 | 95 | if: matrix.java == 'temurin@8' |
96 | | - run: sbt '++${{ matrix.scala }}' unusedCompileDependenciesTest |
| 96 | + run: sbt '++ ${{ matrix.scala }}' unusedCompileDependenciesTest |
97 | 97 |
|
98 | 98 | - name: Make target directories |
99 | 99 | if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') |
@@ -154,12 +154,12 @@ jobs: |
154 | 154 | ~/Library/Caches/Coursier/v1 |
155 | 155 | key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }} |
156 | 156 |
|
157 | | - - name: Download target directories (3.2.0) |
| 157 | + - name: Download target directories (3.2.1) |
158 | 158 | uses: actions/download-artifact@v2 |
159 | 159 | with: |
160 | | - name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.0 |
| 160 | + name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.1 |
161 | 161 |
|
162 | | - - name: Inflate target directories (3.2.0) |
| 162 | + - name: Inflate target directories (3.2.1) |
163 | 163 | run: | |
164 | 164 | tar xf targets.tar |
165 | 165 | rm targets.tar |
@@ -196,4 +196,4 @@ jobs: |
196 | 196 | (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) |
197 | 197 |
|
198 | 198 | - name: Publish |
199 | | - run: sbt '++${{ matrix.scala }}' tlRelease |
| 199 | + run: sbt '++ ${{ matrix.scala }}' tlRelease |
0 commit comments