diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index f43a3acd23..af412f221d 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -80,6 +80,11 @@ jobs: if: startsWith(env.VERSION_TAG, 'r') run: ./gradlew assembleStandardNightly testStandardNightlyUnitTest + # DEBUG + - name: Build nightly build and run tests + if: startsWith(env.VERSION_TAG, 'r') != true && startsWith(env.VERSION_TAG, 'v') != true + run: ./gradlew assembleStandardDebug testStandardDebugUnitTest + - name: Publish test report uses: mikepenz/action-junit-report@v4 if: success() || failure()