Feature: 결제 완료 시 RunningRoom 에서 사용자가 나갈 수 있도록 이벤트를 발행한다. #8
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: unit test on push | |
on: [ pull_request ] | |
jobs: | |
deploy: | |
name: unit test | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PRIVATE_TOKEN }} | |
submodules: true | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Build with Gradle | |
run: | | |
chmod +x ./gradlew | |
./gradlew --info test |