Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
sirthias committed Dec 5, 2024
1 parent 97552e0 commit 2416d41
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
on:
pull_request:
push:
branches: ['master']
branches: [ 'master' ]
release:
types:
- published
Expand All @@ -32,17 +32,17 @@ 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
timeout-minutes: 30
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
Expand All @@ -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"
9 changes: 8 additions & 1 deletion core/src/main/scala/io/bullet/borer/Decoder.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 2416d41

Please sign in to comment.