Skip to content

Commit

Permalink
Differentiate GitHub Actions build
Browse files Browse the repository at this point in the history
  • Loading branch information
SebaDro committed Nov 2, 2021
1 parent 109c313 commit 9d1c2a7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Android CI

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
branches:
- develop
- master

jobs:
build:
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Gradle Build

on:
pull_request:
branches:
- develop
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

0 comments on commit 9d1c2a7

Please sign in to comment.