Skip to content

Commit

Permalink
Add a GitHub action for Android build
Browse files Browse the repository at this point in the history
  • Loading branch information
levibuzolic authored May 18, 2021
1 parent 801f7d6 commit 8ae7cd0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This is a basic workflow to help you get started with Actions

name: Android Build

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Build the app
run: cd ExampleProject/ && ./gradlew build

0 comments on commit 8ae7cd0

Please sign in to comment.