Files
Test/.gitea/workflows/ci.yaml
T
lamtruong28 d108ed5968
Kotlin Multiplatform CI / verify (push) Successful in 25s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 24s
Test / test (push) Successful in 19s
test n+1
2026-08-07 23:23:36 +07:00

35 lines
765 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: Show repository location
run: |
echo "Workspace: $GITHUB_WORKSPACE"
pwd
ls -la
- 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