Skip to content
This repository has been archived by the owner on Aug 3, 2024. It is now read-only.

Commit

Permalink
Added workflow action for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
Fortyseven committed Jun 6, 2021
1 parent 6a42787 commit a64f645
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit a64f645

Please sign in to comment.