Skip to content

ci: mysql 추가

ci: mysql 추가 #6

Workflow file for this run

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@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Set up MySQL
uses: mirromutth/[email protected]
with:

Check failure on line 23 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 23
host port: 3306
container port: 3306
mysql database: 'gohigher'
mysql root password: 'password' }
- name: Checkout source code
uses: actions/checkout@v2
- name: Change gradlew permission
run: sudo chmod 755 gradlew
- name: Build with Gradle
run: ./gradlew clean build -Pencryption-key=${{ secrets.ENCRYPTION_KEY }}