We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2dbbe commit a7810cbCopy full SHA for a7810cb
.github/workflows/validate_gradle_wrapper.yml
@@ -0,0 +1,29 @@
1
+# Validates the integrity of the Gradle Wrapper
2
+name: Validate Gradle Wrapper
3
+
4
+on:
5
+ push:
6
+ branches:
7
+ - master
8
+ paths:
9
+ - 'gradle/**'
10
+ pull_request:
11
12
+ - '*'
13
14
15
16
+concurrency:
17
+ group: gradle-wrapper-validation-${{ github.head_ref || github.ref }}
18
+ cancel-in-progress: true
19
20
+jobs:
21
+ Validation:
22
+ runs-on: ubuntu-latest
23
24
+ steps:
25
+ - name: Checkout Repository
26
+ uses: actions/checkout@v4
27
28
+ - name: Validate Gradle Wrapper
29
+ uses: gradle/actions/wrapper-validation
0 commit comments