Remove redundant build plugin #650
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: Run Detekt code analysis | |
| on: push | |
| jobs: | |
| build: | |
| name: Run Detekt code analysis | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| - uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: zulu | |
| cache: gradle | |
| - name: Run analysis | |
| shell: bash | |
| run: ./gradlew detekt --stacktrace |