diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8632ccd8..3b9054c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ env: on: pull_request: push: - branches: ['master'] + branches: [ 'master' ] release: types: - published @@ -32,7 +32,7 @@ jobs: - name: Cache scala dependencies uses: coursier/cache-action@v6 - name: Lint code - run: sbt ++3.3.3 check + run: sbt ++3.3.4 check test: runs-on: ubuntu-24.04 @@ -40,9 +40,9 @@ jobs: strategy: fail-fast: false matrix: - java: ['11', '17', '21'] - scala: ['3.3.3'] - platform: ['JVM', 'JS', 'Native'] + java: [ '11', '17', '21' ] + scala: [ '3.3.4' ] + platform: [ 'JVM', 'JS' , 'Native' ] steps: - name: Checkout current branch uses: actions/checkout@v4 @@ -68,7 +68,7 @@ jobs: ci: runs-on: ubuntu-24.04 - needs: [lint, test] + needs: [ lint, test ] steps: - name: Aggregate of lint, and all tests run: echo "ci passed" diff --git a/core/src/main/scala/io/bullet/borer/Decoder.scala b/core/src/main/scala/io/bullet/borer/Decoder.scala index 93b9138c..3825e5d4 100644 --- a/core/src/main/scala/io/bullet/borer/Decoder.scala +++ b/core/src/main/scala/io/bullet/borer/Decoder.scala @@ -11,7 +11,14 @@ package io.bullet.borer import io.bullet.borer.encodings.BaseEncoding import io.bullet.borer.internal.Util -import java.lang.{Boolean as JBoolean, Byte as JByte, Double as JDouble, Float as JFloat, Long as JLong, Short as JShort} +import java.lang.{ + Boolean as JBoolean, + Byte as JByte, + Double as JDouble, + Float as JFloat, + Long as JLong, + Short as JShort +} import java.math.{BigDecimal as JBigDecimal, BigInteger as JBigInteger} import scala.annotation.{nowarn, tailrec, threadUnsafe} import scala.collection.{mutable, Factory}