Files
Test/.gitea/workflows/ci.yaml
T
lamtruong28 27a543e8cf
Kotlin Multiplatform CI / verify (push) Failing after 25s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Test / test (push) Canceled after 21m55s
Test n+1
2026-08-07 21:38:37 +07:00

30 lines
429 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