[3주차 서버 코드 실서버로 반영] (#172) #65
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
# workflow의 이름 | |
name: CI | |
# 해당 workflow가 언제 실행될 것인지에 대한 트리거를 지정 | |
on: | |
push: | |
branches: [ main ] # main branch로 push 될 때 실행됩니다. | |
pull_request: | |
branches: [ main ] # main branch로 pull request될 때 실행됩니다. | |
# workflow는 한개 이상의 job을 가지며, 각 job은 여러 step에 따라 단계를 나눌 수 있습니다. | |
jobs: | |
build: | |
name: CI | |
# 해당 jobs에서 아래의 steps들이 어떠한 환경에서 실행될 것인지를 지정합니다. | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
- name: Grant execute permission for gradlew | |
run: chmod +x ./BE/gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean build --exclude-task test | |
working-directory: ./BE/ | |
- name: Check current working directory | |
run: pwd | |