[REFACTOR] 메서드 캡슐화 리팩토링 #8
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: TWTW Backend CI | |
on: | |
push: | |
paths: | |
- '**.java' | |
pull_request: | |
paths: | |
- '**.java' | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./backend | |
jobs: | |
backend-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
architecture: x64 | |
- run: chmod +x gradlew | |
- run: ./gradlew build -x test |