From d7252bbb3da8c831e025ac309a855b27084bc739 Mon Sep 17 00:00:00 2001 From: muzykafs <59024376+muzykafs@users.noreply.github.com> Date: Fri, 23 Oct 2020 13:25:58 -0400 Subject: [PATCH 1/4] Create android.yml --- .github/workflows/android.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000000..84b1ec64c6 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,21 @@ +name: Android CI + +on: + push: + branches: [ develop ] + pull_request: + branches: [ develop ] + +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: Build with Gradle + run: ./gradlew build From cccd9b609138f883f69d7ddca03e2787e1ebfd2b Mon Sep 17 00:00:00 2001 From: muzykafs <59024376+muzykafs@users.noreply.github.com> Date: Fri, 23 Oct 2020 13:29:01 -0400 Subject: [PATCH 2/4] Create testCommit.txt --- testCommit.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 testCommit.txt diff --git a/testCommit.txt b/testCommit.txt new file mode 100644 index 0000000000..4c5d229a22 --- /dev/null +++ b/testCommit.txt @@ -0,0 +1 @@ +This is a test commit From 4fcde9fbb4634ba52811bff3e9d2f54e50a68f5f Mon Sep 17 00:00:00 2001 From: muzykafs <59024376+muzykafs@users.noreply.github.com> Date: Fri, 23 Oct 2020 13:29:56 -0400 Subject: [PATCH 3/4] Create test --- test | 1 + 1 file changed, 1 insertion(+) create mode 100644 test diff --git a/test b/test new file mode 100644 index 0000000000..2abfef09d0 --- /dev/null +++ b/test @@ -0,0 +1 @@ +tset From 32e8f76b459aa2fc63a0e93bb9f160f5aa72240f Mon Sep 17 00:00:00 2001 From: muzykafs <59024376+muzykafs@users.noreply.github.com> Date: Fri, 23 Oct 2020 13:34:03 -0400 Subject: [PATCH 4/4] Create gradle.yml --- .github/workflows/gradle.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000000..7cf27800d6 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,26 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Java CI with Gradle + +on: + push: + branches: [ develop ] + pull_request: + branches: [ develop ] + +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: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build