요청으로 받은 문자열이 포함된 태그를 가진 멤버 찾는 API 구현 #63
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: CI Pipeline | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
types: [ opened, synchronize, reopened ] | |
concurrency: | |
group: xclone-dev-ci | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: "corretto" | |
- name: Create application.properties from secret | |
run: | | |
mkdir -p src/main/resources | |
echo "${{ secrets.APPLICATION_PROPERTIES }}" | base64 --decode > src/main/resources/application.properties | |
- name: Gradle Build | |
run: | | |
chmod +x ./gradlew | |
./gradlew clean build test |