Skip to content

Feature/home_main : 홈화면 & 봉사후기 화면 구현 완료 #41

Feature/home_main : 홈화면 & 봉사후기 화면 구현 완료

Feature/home_main : 홈화면 & 봉사후기 화면 구현 완료 #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'adopt'
- name: Sync Gradle
run: ./gradlew --refresh-dependencies
- name: List Gradle tasks
run: ./gradlew tasks
- name: Run ktlint
run: |
./gradlew ktlintCheck --daemon