Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,20 @@ jobs:
run: |
flox activate -d flox/base -- ./gradlew :plugin-api:apiCheck --no-daemon

- name: Run spotlessCheck
Comment thread
dara-abijo-adfa marked this conversation as resolved.
run: |
flox activate -d flox/base -- ./gradlew spotlessCheck --no-daemon || {
echo "::error::Spotless found formatting violations in this branch. Run './gradlew spotlessApply' locally, then commit and push the formatted files."
exit 1
}

- name: Assemble Universal APK
run: |
echo "gradle_time_start=$(date +%s)" >> $GITHUB_ENV
flox activate -d flox/base -- ./gradlew :app:assembleV8Debug --no-daemon
echo "gradle_time_end=$(date +%s)" >> $GITHUB_ENV


- name: Find APK file
id: find_apk
run: |
Expand Down
Loading