Skip to content

Commit

Permalink
fix(ci): build 시에 checkStyle이 실행되기 때문에 불필요한 과정 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobhboy committed Apr 18, 2024
1 parent 8caaedb commit 5d08846
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,4 @@ jobs:
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew clean build

lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'

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

- name: Execute checkstyleMain
run: ./gradlew clean checkstyleMain

- name: Execute checkstyleTest
run: ./gradlew clean checkstyleTest
run: ./gradlew clean build

0 comments on commit 5d08846

Please sign in to comment.