[FEAT] TMAP-API 수정 + login 작업 수정 #64
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 |