Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,17 @@ jobs:
java-version: '17'
- name: ktLint
run: ./gradlew lintKotlin
- name: run apiCheck
run: ./gradlew apiCheck
apiCheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Run Api Check
run: ./gradlew apiCheck
Copy link
Preview

Copilot AI Aug 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent indentation: this step uses 5 spaces while other steps in the workflow use 8 spaces. The indentation should be consistent with the existing workflow format.

Suggested change
run: ./gradlew apiCheck
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Run Api Check
run: ./gradlew apiCheck

Copilot uses AI. Check for mistakes.

Copy link
Preview

Copilot AI Aug 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent indentation: this step uses 5 spaces while other steps in the workflow use 8 spaces. The indentation should be consistent with the existing workflow format.

Suggested change
run: ./gradlew apiCheck
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Run Api Check
run: ./gradlew apiCheck

Copilot uses AI. Check for mistakes.

Copy link
Preview

Copilot AI Aug 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistent indentation: this step uses 5 spaces while other steps in the workflow use 8 spaces. The indentation should be consistent with the existing workflow format.

Suggested change
run: ./gradlew apiCheck
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Run Api Check
run: ./gradlew apiCheck

Copilot uses AI. Check for mistakes.

jobMatrixSetup:
runs-on: macos-latest
outputs:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:
with:
distribution: 'zulu'
java-version: '17'
- name: formatKotlin
- name: Format Kotlin
run: ./gradlew formatKotlin
- name: Api File Update
run: ./gradlew apiDump
- uses: stefanzweifel/git-auto-commit-action@v6
- name: lintKotlin
run: ./gradlew lintKotlin
- name: Api Check
run: ./gradlew apiCheck
Loading