소나큐브 Maintainability 이슈 수정 #30
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: pr-build | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
pr-build: | |
runs-on : ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
token: ${{ secrets.TOKEN }} | |
filters: | | |
application: | |
- 'build.gradle.kts' | |
- '**/src/**' | |
- '**/build.gradle.kts' | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 21 | |
cache: 'gradle' | |
- name: build | |
run: | | |
./gradlew build --parallel | |