Skip to content

Commit

Permalink
Added CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
hall9zeha committed Mar 2, 2024
1 parent 83d3111 commit 27db3ae
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Android CI App

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Build App
run: ./gradlew assemble

0 comments on commit 27db3ae

Please sign in to comment.