Skip to content

Commit a7810cb

Browse files
committed
add gradle's wrapper validation workflow
1 parent ce2dbbe commit a7810cb

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
branches:
12+
- '*'
13+
paths:
14+
- 'gradle/**'
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

Comments
 (0)