File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
firebase-common/src/commonMain/kotlin/dev/gitlive/firebase Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,23 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v4
15
+ with :
16
+ # Checkout the fork/head-repository and push changes to the fork.
17
+ # If you skip this, the base repository will be checked out and changes
18
+ # will be committed to the base repository!
19
+ repository : ${{ github.event.pull_request.head.repo.full_name }}
20
+ # Checkout the branch made in the fork. Will automatically push changes
21
+ # back to this branch.
22
+ ref : ${{ github.head_ref }}
15
23
- name : Set up JDK
16
24
uses : actions/setup-java@v4
17
25
with :
18
26
distribution : ' zulu'
19
27
java-version : ' 17'
20
- - name : ktLint
28
+ - name : formatKotlin
29
+ run : ./gradlew formatKotlin
30
+ - uses : stefanzweifel/git-auto-commit-action@v5
31
+ - name : lintKotlin
21
32
run : ./gradlew lintKotlin
22
33
- name : run apiCheck
23
34
run : ./gradlew apiCheck
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ import kotlinx.serialization.modules.SerializersModule
5
5
/* *
6
6
* Settings used to configure encoding/decoding
7
7
*/
8
- public sealed interface EncodeDecodeSettings {
8
+ public sealed interface EncodeDecodeSettings
9
+ {
9
10
10
11
/* *
11
12
* The [SerializersModule] to use for serialization. This allows for polymorphic serialization on runtime
You can’t perform that action at this time.
0 commit comments