[Feature]: [BE] 모임(Group) 서비스/컨트롤러 CRUD 구현 #26
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: Gradle Build Workflow | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis:latest | |
ports: | |
- 6379:6379 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Grant execute permission for Gradle | |
working-directory: ./backend | |
run: chmod +x ./gradlew | |
- name: Build with Gradle | |
working-directory: ./backend | |
run: ./gradlew clean build --stacktrace --info | |
- name: Start Redis and configure | |
run: | | |
docker exec $(docker ps -q --filter "ancestor=redis:latest") redis-cli CONFIG SET notify-keyspace-events Ex | |
docker exec $(docker ps -q --filter "ancestor=redis:latest") redis-cli CONFIG GET notify-keyspace-events |