Skip to content

Commit

Permalink
ci: Add in bundle publish test
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeltchuang committed Oct 28, 2024
1 parent 56f042e commit 36866ab
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Pull Request Template

## Description
Please provide a brief description of the changes made in this pull request.
- Please provide a brief description of the changes made in this pull request.

## Related Issues
List any related issues or tickets that this pull request addresses.
- List any related issues or tickets that this pull request addresses.
- For example, closes https://algorandfoundation.atlassian.net/browse/PERA-#

## Checklist
- [ ] Have you tested your changes locally?
Expand All @@ -14,4 +15,4 @@ List any related issues or tickets that this pull request addresses.
- [ ] Have you updated any relevant dependencies?

## Additional Notes
Add any additional notes or comments that may be helpful for reviewers.
- Add any additional notes or comments that may be helpful for reviewers.
15 changes: 15 additions & 0 deletions .github/workflows/android-app-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,18 @@ jobs:
name: "app-lint-results"
path: ./**/build/reports/**
overwrite: true

android-bundle-publish-test:
name: "Android App Bundle Publish Test"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: "Install JDK 17"
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "17"
cache: "gradle"
- name: "Run App Bundle Publish Test"
run: ./gradlew packageProdReleaseBundle

0 comments on commit 36866ab

Please sign in to comment.