fix: Add missing import for MoshiConverterFactory (#431)

Add run CI on the PR not the base.
This commit is contained in:
Nik Clayton 2024-02-09 17:18:50 +01:00 committed by GitHub
parent a3d45ca9ec
commit 9b0f1118f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -1,13 +1,10 @@
name: CI
# Run on pull_request_target to access secrets.GRADLE_ENCRYPTION_KEY,
# and ensure permissions are marked read-only
on:
push:
tags:
- '*'
pull_request_target:
pull_request:
workflow_dispatch:
permissions: read-all

View File

@ -26,6 +26,7 @@ import dagger.hilt.components.SingletonComponent
import javax.inject.Singleton
import okhttp3.OkHttpClient
import retrofit2.Retrofit
import retrofit2.converter.moshi.MoshiConverterFactory
import retrofit2.create
@InstallIn(SingletonComponent::class)