Skip to content

Commit

Permalink
Add GitHub Actions to validate gradle wrapper files
Browse files Browse the repository at this point in the history
It's very important to ensure gradle-wrapper.jar files
in this repository are validated by the official tools.

Signed-off-by: utzcoz <utzcoz@outlook.com>
  • Loading branch information
utzcoz committed Mar 1, 2024
1 parent f13e948 commit e7346c8
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Validate Gradle Wrapper"

on: [push, pull_request]

permissions:
contents: read

jobs:
validation:
name: Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v2

0 comments on commit e7346c8

Please sign in to comment.