[FIX]] 마감임박순에 전형일 없는 것 가장 후순위로 이동 #50
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: gohigher-backend-ci | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
types: [ opened, synchronize ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Set up MySQL | |
uses: mirromutth/[email protected] | |
with: | |
host port: 3306 | |
mysql database: 'gohigher' | |
mysql user: 'gohigher' | |
mysql password: 'password' | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Change gradlew permission | |
run: sudo chmod 755 gradlew | |
- name: Build with Gradle | |
run: ./gradlew clean build -Dencryption-key=${{ secrets.ENCRYPTION_KEY }} |