mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 21:17:54 -05:00
Add GitHub action to verify gradle-wrapper.jar (#3503)
Checks that the gradle wrapper jar is from an official release. See https://github.com/gradle/wrapper-validation-action for more details. Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
This commit is contained in:
11
.github/workflows/gradle-wrapper-validation.yml
vendored
Normal file
11
.github/workflows/gradle-wrapper-validation.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
name: "Validate Gradle Wrapper"
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
validation:
|
||||
name: "Gradle Wrapper Validation"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: gradle/wrapper-validation-action@v1
|
||||
Reference in New Issue
Block a user