Run test
Android Tests / android-test (push) Failing after 53s
Kotlin Multiplatform CI / shared-test (push) Failing after 2m2s
Kotlin Multiplatform CI / android-test (push) Failing after 1m30s
Kotlin Multiplatform CI / android-build (push) Skipped
Kotlin Multiplatform CI / web-test (push) Successful in 4m6s
Debug Gradle Tasks / tasks (push) Successful in 1m47s
SDK Validation / sdk (push) Failing after 53s

This commit is contained in:
2026-08-08 11:04:46 +07:00
parent 4fd702d6a3
commit 812dfd7eba
4 changed files with 114 additions and 114 deletions
+22 -22
View File
@@ -1,22 +1,22 @@
name: iOS Tests #name: iOS Tests
#
on: #on:
pull_request: # pull_request:
push: # push:
branches: # branches:
- main # - main
#
jobs: #jobs:
ios-test: # ios-test:
runs-on: macos-latest # runs-on: macos-latest
#
steps: # steps:
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
#
- run: chmod +x gradlew # - run: chmod +x gradlew
#
- name: Run iOS Tests # - name: Run iOS Tests
run: ./gradlew shared:iosSimulatorArm64Test # run: ./gradlew shared:iosSimulatorArm64Test
#
- name: Build iOS Framework # - name: Build iOS Framework
run: ./gradlew shared:linkDebugFrameworkIosSimulatorArm64 # run: ./gradlew shared:linkDebugFrameworkIosSimulatorArm64
+27 -27
View File
@@ -1,27 +1,27 @@
name: Lint #name: Lint
#
on: #on:
pull_request: # pull_request:
push: # push:
branches: # branches:
- develop # - develop
#
jobs: #jobs:
lint: # lint:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
#
steps: # steps:
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
#
- uses: actions/setup-java@v4 # - uses: actions/setup-java@v4
with: # with:
distribution: temurin # distribution: temurin
java-version: "17" # java-version: "17"
#
- run: chmod +x gradlew # - run: chmod +x gradlew
#
- name: Detekt # - name: Detekt
run: ./gradlew detekt # run: ./gradlew detekt
#
- name: Kotlin Check # - name: Kotlin Check
run: ./gradlew check # run: ./gradlew check
+37 -37
View File
@@ -1,37 +1,37 @@
name: Release #name: Release
#
on: #on:
push: # push:
tags: # tags:
- "v*" # - "v*"
#
jobs: #jobs:
#
android-release: # android-release:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
#
steps: # steps:
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
#
- uses: actions/setup-java@v4 # - uses: actions/setup-java@v4
with: # with:
distribution: temurin # distribution: temurin
java-version: "17" # java-version: "17"
#
- uses: android-actions/setup-android@v3 # - uses: android-actions/setup-android@v3
#
- run: chmod +x gradlew # - run: chmod +x gradlew
#
- name: Build Release # - name: Build Release
run: ./gradlew androidApp:assembleRelease # run: ./gradlew androidApp:assembleRelease
#
ios-release: # ios-release:
runs-on: macos-latest # runs-on: macos-latest
#
steps: # steps:
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
#
- run: chmod +x gradlew # - run: chmod +x gradlew
#
- name: Build iOS Release # - name: Build iOS Release
run: ./gradlew shared:linkReleaseFrameworkIosSimulatorArm64 # run: ./gradlew shared:linkReleaseFrameworkIosSimulatorArm64
+28 -28
View File
@@ -1,28 +1,28 @@
name: Web Tests #name: Web Tests
#
on: #on:
pull_request: # pull_request:
push: # push:
branches: # branches:
- develop # - develop
- main # - main
#
jobs: #jobs:
web: # web:
runs-on: ubuntu-latest # runs-on: ubuntu-latest
#
steps: # steps:
- uses: actions/checkout@v4 # - uses: actions/checkout@v4
#
- uses: actions/setup-java@v4 # - uses: actions/setup-java@v4
with: # with:
distribution: temurin # distribution: temurin
java-version: "17" # java-version: "17"
#
- run: chmod +x gradlew # - run: chmod +x gradlew
#
- name: JS Tests # - name: JS Tests
run: ./gradlew webApp:jsTest # run: ./gradlew webApp:jsTest
#
- name: WASM Tests # - name: WASM Tests
run: ./gradlew webApp:wasmJsTest # run: ./gradlew webApp:wasmJsTest