feat: Receive Kakao Server Access Token (OAuth2) #13
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: 테스트 코드 및 빌드 | |
on: | |
pull_request: | |
types: [ opened, synchronize, closed ] | |
branches: | |
- 'develop' | |
- 'master' | |
jobs: | |
test: | |
name: "[CI] Check Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GIT_TOKEN }} | |
submodules: true | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Update Git submodules | |
run: git submodule update --remote --recursive | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Test with Gradle | |
run: ./gradlew test |