Skip to content

Commit

Permalink
Develop (#14)
Browse files Browse the repository at this point in the history
* Update android-library.yml

upgraded to jdk 11 for github actions

* Update android-library.yml

updated github actions yml

* Update android-library.yml (#13)

update yml
  • Loading branch information
invissvenska authored Nov 24, 2021
1 parent 1035c87 commit 9ee00ac
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions .github/workflows/android-library.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
name: Android-Library CI

on:
push:
branches:
- master
pull_request:
branches:
- master
push:
branches:
- master
pull_request:
branches:
- master

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: Make Gradle executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Check out code
uses: actions/checkout@v2
- name: set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug

0 comments on commit 9ee00ac

Please sign in to comment.