Files
Test/.gitea/workflows/ci.yaml
T
lamtruong28 0c6437f64b
Kotlin Multiplatform CI / verify (push) Failing after 24s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Test / test (push) Successful in 20s
Fix:
2026-08-06 16:10:05 +07:00

30 lines
428 B
YAML

name: Kotlin Multiplatform CI
on:
push:
branches:
- develop
- main
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: java -version
- run: chmod +x gradlew
- run: ./gradlew clean
- run: ./gradlew ktlintCheck
- run: ./gradlew detekt
- run: ./gradlew test
- run: ./gradlew build
- run: ./gradlew assembleDebug