[Feature/#7] 설정 파일 submodule로 관리 #15
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: build/test | |
on: # when the workflows should be triggered ? | |
pull_request: # Starting Build when pull request is created. | |
branches: [ "main", "dev"] | |
push: | |
branches: ["dev"] | |
permissions: | |
contents: read | |
checks: write | |
jobs: # defining jobs, executed in this workflows | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 # clone repository | |
with: | |
token: ${{ secrets.ACTION_TOKEN }} | |
submodules: true | |
# Caching Gradle | |
- name: Cache Gradle | |
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: Set up JDK 17 | |
uses: actions/setup-java@v3 # set up the required java version | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Gradle Authorization | |
run: chmod +x gradlew | |
# Gradle run | |
- name: Gradle Build Run | |
run: ./gradlew build | |
# Gradle test | |
- name: Test with Gradle | |
run: ./gradlew --info test | |
# Publish Unit Test Results | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v1 | |
if: ${{ always() }} | |
with: | |
files: build/test-results/**/*.xml | |
- name: Cleanup Gradle Cache | |
if: ${{ always() }} | |
run: | | |
rm -f ~/.gradle/caches/modules-2/modules-2.lock | |
rm -f ~/.gradle/caches/modules-2/gc.properties |