Skip to content

Commit 11f371e

Browse files
committed
chore(ci): add gradle wrapper validation
1 parent 9c4cb7a commit 11f371e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Validate Gradle Wrapper"
2+
3+
on:
4+
workflow_dispatch: null
5+
push:
6+
paths:
7+
- "gradlew"
8+
- "gradlew.bat"
9+
- "gradle/wrapper/"
10+
pull_request:
11+
paths:
12+
- "gradlew"
13+
- "gradlew.bat"
14+
- "gradle/wrapper/"
15+
16+
jobs:
17+
validation:
18+
name: "Validation"
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: gradle/actions/wrapper-validation@v4

0 commit comments

Comments
 (0)