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
on:
pull_request:
push:
branches:
- main
jobs:
ios-test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: chmod +x gradlew
- name: Run iOS Tests
run: ./gradlew shared:iosSimulatorArm64Test
- name: Build iOS Framework
run: ./gradlew shared:linkDebugFrameworkIosSimulatorArm64
#name: iOS Tests
#
#on:
# pull_request:
# push:
# branches:
# - main
#
#jobs:
# ios-test:
# runs-on: macos-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - run: chmod +x gradlew
#
# - name: Run iOS Tests
# run: ./gradlew shared:iosSimulatorArm64Test
#
# - name: Build iOS Framework
# run: ./gradlew shared:linkDebugFrameworkIosSimulatorArm64
+27 -27
View File
@@ -1,27 +1,27 @@
name: Lint
on:
pull_request:
push:
branches:
- develop
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- run: chmod +x gradlew
- name: Detekt
run: ./gradlew detekt
- name: Kotlin Check
run: ./gradlew check
#name: Lint
#
#on:
# pull_request:
# push:
# branches:
# - develop
#
#jobs:
# lint:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: "17"
#
# - run: chmod +x gradlew
#
# - name: Detekt
# run: ./gradlew detekt
#
# - name: Kotlin Check
# run: ./gradlew check
+37 -37
View File
@@ -1,37 +1,37 @@
name: Release
on:
push:
tags:
- "v*"
jobs:
android-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- uses: android-actions/setup-android@v3
- run: chmod +x gradlew
- name: Build Release
run: ./gradlew androidApp:assembleRelease
ios-release:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: chmod +x gradlew
- name: Build iOS Release
run: ./gradlew shared:linkReleaseFrameworkIosSimulatorArm64
#name: Release
#
#on:
# push:
# tags:
# - "v*"
#
#jobs:
#
# android-release:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: "17"
#
# - uses: android-actions/setup-android@v3
#
# - run: chmod +x gradlew
#
# - name: Build Release
# run: ./gradlew androidApp:assembleRelease
#
# ios-release:
# runs-on: macos-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - run: chmod +x gradlew
#
# - name: Build iOS Release
# run: ./gradlew shared:linkReleaseFrameworkIosSimulatorArm64
+28 -28
View File
@@ -1,28 +1,28 @@
name: Web Tests
on:
pull_request:
push:
branches:
- develop
- main
jobs:
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- run: chmod +x gradlew
- name: JS Tests
run: ./gradlew webApp:jsTest
- name: WASM Tests
run: ./gradlew webApp:wasmJsTest
#name: Web Tests
#
#on:
# pull_request:
# push:
# branches:
# - develop
# - main
#
#jobs:
# web:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: "17"
#
# - run: chmod +x gradlew
#
# - name: JS Tests
# run: ./gradlew webApp:jsTest
#
# - name: WASM Tests
# run: ./gradlew webApp:wasmJsTest