Skip to content

Commit

Permalink
add build test with Github Actions (FoKE-Developers#19)
Browse files Browse the repository at this point in the history
[Issue] FoKE-Developers#1
[Descriptions]
- 빌드 테스트를 위한 Github Actions 스크립트 추가
  • Loading branch information
DokySp authored Sep 22, 2024
1 parent 2c53279 commit 08bc449
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/android.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Android CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

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

0 comments on commit 08bc449

Please sign in to comment.