Skip to content

Commit

Permalink
Initial attempt at app build
Browse files Browse the repository at this point in the history
  • Loading branch information
kberzinch authored Apr 20, 2024
1 parent 3ff3f40 commit 4611d4e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build App

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: set up JDK
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'corretto'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build

0 comments on commit 4611d4e

Please sign in to comment.