Force versions in attempt to address conflicts and compilation issues. #1
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 Detekt code analysis | |
on: push | |
jobs: | |
build: | |
name: Run Detekt code analysis | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: zulu | |
cache: gradle | |
- name: Run analysis | |
shell: bash | |
run: ./gradlew detekt --stacktrace |