Add gradle wrapper validation workflow.

This commit is contained in:
edgchen1 2023-03-03 14:42:09 -08:00 committed by Edward Chen
parent f71ac9859e
commit 5b3f79a11a

View file

@ -0,0 +1,14 @@
# Check gradle-wrapper.jar checksums against official Gradle releases.
# See: https://github.com/marketplace/actions/gradle-wrapper-validation
# This workflow was copied from the link above.
name: "Validate Gradle Wrapper"
on: [push, pull_request]
jobs:
validation:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gradle/wrapper-validation-action@v1