File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
firebase-common/src/commonMain/kotlin/dev/gitlive/firebase Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Push
2+
3+ on : [ push ]
4+
5+ jobs :
6+ formatKotlin :
7+ runs-on : ubuntu-latest
8+ permissions :
9+ contents : write
10+ steps :
11+ - uses : actions/checkout@v4
12+ with :
13+ ref : ${{ github.head_ref }}
14+ - name : Set up JDK
15+ uses : actions/setup-java@v4
16+ with :
17+ distribution : ' zulu'
18+ java-version : ' 17'
19+ - name : formatKotlin
20+ run : ./gradlew formatKotlin
21+ - uses : stefanzweifel/git-auto-commit-action@v5
22+ - name : lintKotlin
23+ run : ./gradlew lintKotlin
Original file line number Diff line number Diff line change @@ -5,7 +5,8 @@ import kotlinx.serialization.modules.SerializersModule
55/* *
66 * Settings used to configure encoding/decoding
77 */
8- public sealed interface EncodeDecodeSettings {
8+ public sealed interface EncodeDecodeSettings
9+ {
910
1011 /* *
1112 * 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