feat(Friend): 친구 CRUD 기능 추가 #36
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: Spring | |
on: | |
pull_request: | |
branches: | |
- master | |
- dev | |
env: | |
PROPERTIES: src/main/resources/application.yaml | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'oracle' | |
java-version: '17' | |
cache: 'gradle' | |
- name: Create properties | |
run: echo "${{ secrets.PROPERTIES }}" > ${{ env.PROPERTIES }} | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build |