diff options
| author | Jack Koenig | 2021-01-19 16:47:26 -0800 |
|---|---|---|
| committer | GitHub | 2021-01-19 16:47:26 -0800 |
| commit | 6d8e9041e000f9ea5fb3d069d1f9ec06d2158575 (patch) | |
| tree | ce90469dbd95ba9f833aba93baa98752a16c0711 /.github/workflows | |
| parent | 0748d0458c30a5d58198080aca36b43c09184841 (diff) | |
Restore scalafmt CI check (#2047)
Fix scalafmtCheckAll failures that snuck through
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f57a1a6..18a680f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,6 +31,9 @@ jobs: java-version: adopt@1.8 - name: Cache Scala uses: coursier/cache-action@v5 + - name: Check Formatting (Scala 2.12 only) + if: matrix.scala == '2.12.12' + run: sbt ++${{ matrix.scala }} scalafmtCheckAll - name: Unidoc builds (Scala 2.12 only) if: matrix.scala == '2.12.12' run: sbt ++${{ matrix.scala }} unidoc |
