Run test with Actions

This commit is contained in:
kyori19 2020-05-10 14:06:52 +09:00 committed by GitHub
parent 72d5753d75
commit 203f4f6e75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

23
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
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: Run JUnit Test
run: ./gradlew :app:testBlueDebugUnitTest