Update Sponsor.kt #72
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Koin Verify Test | |
| on: | |
| push: | |
| branches: | |
| - 2025/compose-multiplatform | |
| pull_request: | |
| branches: | |
| - 2025/compose-multiplatform | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-koin: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Java | |
| uses: ./.github/actions/setup-java | |
| - name: Run Koin module verify test | |
| run: ./gradlew :composeApp:desktopTest --tests "com.droidknights.app.KnightsAppModuleTest" --stacktrace |