feat : post와 comment 응답에 user id를 포함하도록 수정 #398
Workflow file for this run
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: Ktlint check | |
on: [pull_request] | |
jobs: | |
ktlint: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: setup jdk 21 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'gradle' | |
- name: add permission to gradlew | |
run: chmod +x ./gradlew | |
shell: bash | |
- name: test | |
run: ./gradlew ktlintCheck | |
shell: bash |