Skip to content

Commit

Permalink
CI: setup Java 9
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonid Plyushch committed Feb 21, 2020
1 parent 54552cc commit a1bae3a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/debug_build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: APK

on: push

Expand All @@ -8,6 +8,10 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: 9
- name: Build
run: |
./gradlew assembleDebug
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ jobs:
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: 9
- name: Execute tests
run: |
./gradlew test

0 comments on commit a1bae3a

Please sign in to comment.