Run sync
Sync Source / sync (push) Successful in 33s

This commit is contained in:
2026-08-08 15:58:53 +07:00
parent 63b0cff1f5
commit 48ca9dbabf
10 changed files with 10 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#name: Lint
#
#on:
# pull_request:
# push:
# branches:
# - develop
#
#jobs:
# lint:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
#
# - uses: actions/setup-java@v4
# with:
# distribution: temurin
# java-version: "17"
#
# - run: chmod +x gradlew
#
# - name: Detekt
# run: ./gradlew detekt
#
# - name: Kotlin Check
# run: ./gradlew check