[feature] s3 presignedUrl 발급 기능 구현 #188
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: | |
branches: | |
- main | |
paths: | |
- .github/workflows/ktlint-check.yml | |
- 'src/**/*.kt' | |
- '**.kts' | |
jobs: | |
ktlint: | |
name: Check Code Quality | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
distribution: "corretto" | |
cache: "gradle" | |
# Gradle test를 실행 | |
- name: check style | |
run: ./gradlew ktlintCheck |