Skip to content

fix : 도서 이미지 관련 코드 변경 #43

fix : 도서 이미지 관련 코드 변경

fix : 도서 이미지 관련 코드 변경 #43

Workflow file for this run

name: feature branch test

Check failure on line 1 in .github/workflows/feature-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/feature-test.yml

Invalid workflow file

You have an error in your yaml syntax
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 }}