File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
firebase-common/src/commonMain/kotlin/dev/gitlive/firebase Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 10
10
jobs :
11
11
lint :
12
12
runs-on : ubuntu-latest
13
+ permissions :
14
+ contents : write
13
15
steps :
14
16
- uses : actions/checkout@v4
17
+ with :
18
+ repository : ${{ github.event.pull_request.head.repo.full_name }}
19
+ ref : ${{ github.head_ref }}
15
20
- name : Set up JDK
16
21
uses : actions/setup-java@v4
17
22
with :
18
23
distribution : ' zulu'
19
24
java-version : ' 17'
20
- - name : ktLint
25
+ - name : formatKotlin
26
+ run : ./gradlew formatKotlin
27
+ - uses : stefanzweifel/git-auto-commit-action@v5
28
+ - name : lintKotlin
21
29
run : ./gradlew lintKotlin
22
30
- name : run apiCheck
23
31
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