refactor: 실시간게임랭킹산정기능을sorted set을활용하도록개선 #60
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: test | |
on: | |
pull_request: | |
branches: [ main, develop ] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: 테스트 | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: 레포지토리를 체크아웃 | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: JDK 21 설치 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: 빌드 및 테스트 | |
run: ./gradlew clean build |