Skip to content

{fix} 목표 수행 기록 오류 수정 #6

{fix} 목표 수행 기록 오류 수정

{fix} 목표 수행 기록 오류 수정 #6

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