2024-12-25 23:19:31 -05:00
|
|
|
name: on-pr
|
2024-07-28 14:49:35 -04:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2024-12-25 23:19:31 -05:00
|
|
|
format_check:
|
2024-07-28 14:49:35 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up JDK 17
|
|
|
|
uses: actions/setup-java@v4
|
|
|
|
with:
|
|
|
|
distribution: 'temurin'
|
|
|
|
java-version: '17'
|
|
|
|
cache: gradle
|
|
|
|
|
|
|
|
- name: Grant execute permission for gradlew
|
|
|
|
run: chmod +x gradlew
|
|
|
|
|
|
|
|
- name: Run ktlint
|
|
|
|
run: ./gradlew ktlintCheck
|