Skip to content

Commit

Permalink
Update GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmichalik committed Dec 13, 2024
1 parent 822cdd6 commit b0b6aa8
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 35 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build-debug-apk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Build debug APK
on: push
jobs:
build-debug-apk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- run: |
chmod +x gradlew
./gradlew assembleDebug
- uses: actions/upload-artifact@v4
with:
name: debug-apk
path: app/build/outputs/apk/debug/*.apk
19 changes: 0 additions & 19 deletions .github/workflows/build_debug_apk.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Run tests
on: push
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- run: |
chmod +x gradlew
./gradlew testDebug
16 changes: 0 additions & 16 deletions .github/workflows/run_tests.yml

This file was deleted.

0 comments on commit b0b6aa8

Please sign in to comment.