Skip to content

Commit

Permalink
[chore] #1 pr_builder.yml 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyunniiii committed Nov 20, 2023
1 parent bf6c748 commit 5778fd3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pr_builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', '**/buildSrc/**/*.kt') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 17
uses: actions/setup-java@v1
with:
Expand All @@ -30,11 +31,14 @@ jobs:
- name: Change gradlew permissions
run: chmod +x ./gradlew

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Touch local properties
run: touch local.properties

- name: Lint Check
run: ./gradlew ktlintCheck
run: ./gradlew ktlintCheck -PcompileSdkVersion=34

- name: Build with Gradle
run: ./gradlew build
run: ./gradlew build -PcompileSdkVersion=34

0 comments on commit 5778fd3

Please sign in to comment.