Skip to content

Commit

Permalink
build: develop-an.yml 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
s6m1n committed Jul 19, 2024
1 parent 42062f7 commit 5218d1f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/develop-an.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Android CI

on:
push:
branches: [ "develop-an" ]
pull_request:
branches: [ "develop-an" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Run ktlint
run: ./gradlew ktlintCheck

- name: Clean build
run: ./gradlew clean build

- name: Clean test
run: ./gradlew clean test

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

0 comments on commit 5218d1f

Please sign in to comment.