commit 8fca5f8ecddb4da9565ac3fd8936e4f28acdd352 Author: Nathan Freitas nathan@guardianproject.info Date: Tue Oct 6 21:52:18 2020 -0400
Create android.yml --- .github/workflows/android.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+)
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 00000000..7ec01475 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,21 @@ +name: Android CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Build with Gradle + run: ./gradlew build
tor-commits@lists.torproject.org