- Notifications
You must be signed in to change notification settings - Fork213
Update README.md - add support plan#474
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| name:Check code format | |
| on:pull_request | |
| jobs: | |
| check-format: | |
| runs-on:ubuntu-latest | |
| steps: | |
| -name:Checkout branch | |
| uses:actions/checkout@v3.5.3 | |
| -name:Set up JDK 17 | |
| uses:actions/setup-java@v3 | |
| with: | |
| java-version:17 | |
| distribution:temurin | |
| cache:gradle | |
| -name:Run ktfmt | |
| run:| | |
| ./gradlew ktfmtCheck --no-daemon |