Skip to content

[feat] 다중 DB 구축 및 사용자 로그 구현 #10

[feat] 다중 DB 구축 및 사용자 로그 구현

[feat] 다중 DB 구축 및 사용자 로그 구현 #10

name: CI
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'
- name: create application.properties
run: |
## create application.properties
cd MathCaptain/weakness/src/main/resources
touch ./application.properties
echo "${{ secrets.APPLICATION }}" >> ./application.properties
cat ./application.properties
shell: bash
- name: build
working-directory: MathCaptain/weakness
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash