add @StubFor
annotation to generated gRPC stub classes
#14
Workflow file for this run
This file contains 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: Ktlint Check | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ktlint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup AdoptOpenJDK | |
uses: joschi/setup-jdk@v2 | |
with: | |
java-version: '17' | |
- name: Ktlint Check with Gradle | |
working-directory: ./ | |
run: ./gradlew clean ktlintCheck |