fix(deps): update dependency com.google.protobuf:protobuf-kotlin to v… #1036
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: Run static code analysis using detekt | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- 'README.md' | |
- 'assets/**' | |
- '.github/**/*.md' | |
jobs: | |
detekt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Run Detekt | |
env: | |
NEWS_FEED_API_KEY: ${{ secrets.NEWS_FEED_API_KEY }} | |
run: ./gradlew detekt |