Files
Test/.gitea/workflows/ci.yaml
T
lamtruong28 afd1ba9672
Kotlin Multiplatform CI / verify (push) Failing after 1m56s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 25s
Test / test (push) Successful in 19s
Fix ci.yaml file
2026-08-07 22:23:41 +07:00

31 lines
559 B
YAML

name: Kotlin Multiplatform CI
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