We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43677d7 commit 83b74f0Copy full SHA for 83b74f0
.github/workflows/pr_iac_lint.yml
@@ -28,6 +28,13 @@ jobs:
28
with:
29
distribution: 'corretto'
30
java-version: 11
31
+ - name: Build Gradle Setup
32
+ if: ${{ matrix.java == '8' }} # Gradle example can only be built on Java 8
33
+ working-directory: examples/powertools-examples-core/gradle
34
+ run: |
35
+ curl -L -o gradle/wrapper/gradle.zip https:$(cat gradle/wrapper/gradle-wrapper.properties | grep distributionUrl | cut -d ':' -f 2)
36
+ unzip gradle/wrapper/gradle.zip -d gradle/wrapper/gradle
37
+ ./gradle/wrapper/gradle/gradle-8.2.1/bin/gradle wrapper
38
- name: Build Project
39
working-directory: .
40
run: |
@@ -53,4 +60,4 @@ jobs:
53
60
54
61
tflint --version
55
62
tflint --init
56
- tflint -f compact
63
+ tflint -f compact
0 commit comments