From 203f4f6e759d171d6f6e4c331ed3aa552e63564a Mon Sep 17 00:00:00 2001 From: kyori19 Date: Sun, 10 May 2020 14:06:52 +0900 Subject: [PATCH] Run test with Actions --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 000000000..8e5bd1a95 --- /dev/null +++ b/.github/workflows/test.yml @@ -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