1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

Tech | Fix | Lint setup for CI (#2286)

* Tech | Fix | Reduce tag size

* Tech | Enhancement | Move lint configuration to one place

* Tech | Enhancement | Enable Gradle quiet mode for errors logs only
This commit is contained in:
Sergey Boishtyan 2022-05-18 23:21:27 +03:00 committed by GitHub
parent 39046f787f
commit 79bcfcd811
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 16 additions and 19 deletions

View file

@ -18,9 +18,9 @@ jobs:
amplitude_secret_debug: ${{ secrets.ANYTYPE_AMPLITUDE_DEBUG_SECRET }}
run: ./middleware2.sh $token_secret $user_secret $amplitude_secret $amplitude_secret_debug
- name: Compile android test sources
run: ./gradlew compileDebugAndroidTestSources
run: ./gradlew compileDebugAndroidTestSources -q
- name: Run unit tests
run: ./gradlew testDebugAll -Dpre-dex=false
run: ./gradlew testDebugAll -Dpre-dex=false -q
- name: Android test report
uses: asadmansr/android-test-report-action@v1.2.0
if: ${{ always() }} # IMPORTANT: run Android Test Report regardless

View file

@ -15,4 +15,4 @@ jobs:
amplitude_secret_debug: ${{ secrets.ANYTYPE_AMPLITUDE_DEBUG_SECRET }}
run: ./middleware2.sh $token_secret $user_secret $amplitude_secret $amplitude_secret_debug
- name: Run unit tests. Full mode.
run: ./gradlew build test -Dpre-dex=false
run: ./gradlew build test -Dpre-dex=false -q