Skip to content

Commit bf22b9f

Browse files
authored
feat(action): add Gradle Wrapper Validation (#622)
1 parent ffbfad0 commit bf22b9f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Gradle Wrapper Validation
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'gradlew'
7+
- 'gradlew.bat'
8+
- 'gradle/wrapper/'
9+
10+
jobs:
11+
validateWrapper:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- uses: gradle/wrapper-validation-action@v1

0 commit comments

Comments
 (0)