Skip to content

feat(store): github action 테스트 자동화 #21 #7

feat(store): github action 테스트 자동화 #21

feat(store): github action 테스트 자동화 #21 #7

Workflow file for this run

name: test
on:
push:
branches:
- '**'
jobs:
build:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 1. set up jdk 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: 2. grant execute permission for gradlew
run: chmod +x gradlew
- name: 3. test with gradle
run: ./gradlew test -Djasypt.encryptor.password=${{secrets.JASYPT_PASSWORD}}