test: 로그 확인 #43
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: TTEOKGUK | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'develop' | |
- 'master' | |
- 'hotfix/#16' | |
jobs: | |
build: | |
name: "[CI] Check Gradle Build" | |
runs-on: ubuntu-latest | |
steps: | |
- name: (Set Up) checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GIT_TOKEN }} | |
submodules: true | |
- name: Pull & update submodules recursively | |
run: | | |
git submodule update --init --recursive | |
git submodule update --recursive --remote | |
- name: print log | |
run: cat ./tteokguk-config/application-dev.yml | |
- name: (Set Up) Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: (Set Up) Grant Execute permission for gradlew | |
run: chmod 777 gradlew | |
# - name: (Build) Build with Gradle | |
# run: ./gradlew clean build -i | |
- name: CopyGitSubmodule | |
run: ./gradlew copyGitSubmodule | |
- name: print log | |
run: cat ./src/main/resources/application-dev.yml |