Skip to content

Merge pull request #1 from donsonioc2010/feature/#61-swagger #5

Merge pull request #1 from donsonioc2010/feature/#61-swagger

Merge pull request #1 from donsonioc2010/feature/#61-swagger #5

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.

Check failure on line 1 in .github/workflows/ci_test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci_test.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: CI
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: CI
on:
pull_request:
branches:
- 'develop'
jobs:
CI:
# ## NCP OS : Ubuntu 18.04
# runs-on: ubuntu-18.04
#
# steps:
# ## Project JDK11 Setting
# - name: Checkout
# uses: actions/checkout@v3
# - name: Set up JDK 11
# uses: actions/setup-java@v3
# with:
# java-version: '11'
# distribution: 'temurin'
#
# ## Riot Api Key 수정
# - name: Constants.yml Change Riot Api Key
# run: |
# cd ./src/main/resources
# chmod 755 constants.yml
# sed -i 's/riot-api-key/${{ secrets.RIOT_API_KEY }}/g' constants.yml
# cat constants.yml
# shell: bash
#
# ## Gradle
# - name: Grant Execute permission for gradlew
# run: chmod +x gradlew
# shell: bash
#
# - name: Build with Gradle
# run: ./gradlew build -x test
# shell: bash
#
# - name: Test with Gradle
# run: SPRING_PROFILES_ACTIVE=[local] ./gradlew clean test
# shell: bash