[ATR-599] fix: 구독한 뉴스레터를 가져올 때 구독취소한 것도 가져오는 현상 수정 #165
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: dev pull request | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
branches: | |
- dev | |
jobs: | |
dev-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Github Repository 파일 불러오기 | |
uses: actions/checkout@v4 | |
- name: JDK v21 설치 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: application.yml 파일 만들기 | |
run: echo '${{ secrets.APPLICATION_PROPERTIES }}' > ./src/main/resources/application.yml | |
- name: application-test.yml 파일 만들기 | |
run: echo '${{ secrets.APPLICATION_TEST_PROPERTIES }}' > ./src/main/resources/application-test.yml | |
- name: credentials.json 파일 만들기 | |
run: echo '${{ secrets.CREDENTIAL_JSON }}' > ./src/main/resources/credentials.json | |
- name: 빌드하기 및 테스트 하기 | |
run: ./gradlew clean build |