Did removing this break the action?

This commit is contained in:
jobobby04 2020-05-09 18:51:15 -04:00 committed by GitHub
parent 4646e4b0d9
commit 38c5163ab9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,19 @@ on:
- 'master'
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Unit tests
run: bash ./gradlew test --stacktrace:
apk:
name: Generate APK
runs-on: ubuntu-18.04