Skip to content

Commit 9bc76e0

Browse files
authored
lint할때 컴파일 안함 (#458)
1 parent b724ddd commit 9bc76e0

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929

3030
- name: Run Tests
3131
run: |
32-
./gradlew clean test
32+
./gradlew clean test -x processAot -x processTestAot

.github/workflows/lint.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v4
1616

17-
- name: Configure AWS credentials
18-
uses: aws-actions/configure-aws-credentials@v4
19-
with:
20-
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
21-
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
22-
aws-region: ap-northeast-2
23-
2417
- name: Set up JDK 25
2518
uses: actions/setup-java@v4
2619
with:
@@ -29,4 +22,5 @@ jobs:
2922

3023
- name: Run Lint
3124
run: |
32-
./gradlew clean ktlintCheck
25+
./gradlew clean ktlintFormat -x compileKotlin -x compileTestKotlin \
26+
-x compileTestFixturesKotlin -x compileJava -x processAot -x processTestAot

0 commit comments

Comments
 (0)