Skip to content

Commit

Permalink
init GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
emeruvia committed Feb 20, 2024
1 parent c707e69 commit c6d1711
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Github Build Demo

on:
push:

jobs:

# Job name
build_demo:
name: Build Job
runs-on: ubuntu-latest #mac-os-latest
continue-on-error: true

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'temurin'

- name: Setup gradle permissions
run: chmod +x ./gradlew

- name: Build gradle project
run: ./gradlew build

0 comments on commit c6d1711

Please sign in to comment.