Last active
October 20, 2022 05:16
-
-
Save pfieffer/c493178bfddfdcaa160369fd65560a5c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android Build | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set Up JDK | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Run Tests | |
run: ./gradlew test | |
- name: Build Project | |
run: ./gradlew assemble |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put this on
your_project/.github/workflows/
directory