feature/signup: 자체로그인 이동봉사 중개자 회원가입 ui 구현 #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |