style: #49 포인트 전체 내역 조회 로직 수정 #100
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: feature branch test | ||
on: | ||
push: | ||
branches: | ||
- 'feature/**' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Prepare secure key manager certKey file | ||
run: | | ||
echo ${{ secrets.SECURE_KEY_MANAGER_CERT_KEY }} > t3team-skm-cert.txt | ||
mkdir src/main/resources/key | ||
base64 -d t3team-skm-cert.txt > src/main/resources/key/t3team-skm-cert.p12 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
cache: maven | ||
- name: test with Maven | ||
run: mvn test ${{ secrets.MAVEN_PACKAGE_OPTIONS }} |