feat: 어드민 멤버 조회하기 API 구현 #34
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 : Check Style and Test to Develop | |
on: | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/[email protected] | |
- name: JDK 설치 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: gradlew 권한 부여 | |
run: chmod +x ./gradlew | |
# Redis 컨테이너 실행 | |
- name: Start containers | |
run: docker-compose -f ./docker-compose-test.yaml up -d | |
- name: Gradle Build | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: check | |
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }} |