refactor: 피드백 검증이 이뤄지지 않는 문제를 해결한다. #136
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: Java CI with Gradle | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: ["backend"] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: jolla-ppalla | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
- name: Build with Gradle | |
run: ./gradlew build | |
working-directory: ./backend |