Files
Test/.gitea/workflows/ci.yaml
T
lamtruong28 c6020b4283
Kotlin Multiplatform CI / verify (push) Failing after 1m36s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 24s
Test / test (push) Successful in 19s
Remove test
2026-08-07 23:10:41 +07:00

31 lines
619 B
YAML

name: Kotlin Multiplatform CI
run-name: ${{ gitea.actor }} is testing build source 🚀
on:
push:
branches:
- develop
- main
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "17"
- 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