[휴면 상태 변경] 사용자는 휴면 상태를 변경할 수 있다.(#57) #40
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: Yeonba Backend DEV CI | |
on: | |
pull_request: | |
branches: [ "dev" ] | |
env: | |
WORKING_DIRECTORY: ./ | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Set application properties | |
run: | | |
touch be/src/main/resources/application.properties | |
echo "${{ secrets.APPLICATION_PROPERTIES }}" > be/src/main/resources/application.properties | |
- name: Test with Gradle | |
run: | | |
chmod +x ./be/gradlew | |
cd be | |
./gradlew test | |
env: | |
WORKING_DIRECTORY: ${{ env.WORKING_DIRECTORY }} |