[refactor] 패키지 구조 변경 #40
Workflow file for this run
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: BE - CI | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
[ | |
"src/**", | |
"build.gradle", | |
] | |
types: [opened, synchronize, reopened] | |
defaults: | |
run: | |
working-directory: ./ | |
permissions: | |
contents: read | |
jobs: | |
be-test: | |
name: test spring boot | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: setup repo | |
uses: actions/checkout@v3 | |
- name: setup java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
distribution: "temurin" | |
cache: gradle | |
- name: use gradle cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: test with gradle | |
run: ./gradlew test | |