Skip to content

[FIX] 거래내역 조회 내림차순으로 수정 및 컬럼 추가 #89

[FIX] 거래내역 조회 내림차순으로 수정 및 컬럼 추가

[FIX] 거래내역 조회 내림차순으로 수정 및 컬럼 추가 #89

Workflow file for this run

name: ci
on:
pull_request:
branches: [ "develop" ]
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.yaml
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION_SECRET_YML }}" > ./application-secret.yml
working-directory: ${{ env.working-directory }}
- name: build
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash