mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
Add gradle wrapper validation workflow.
This commit is contained in:
parent
f71ac9859e
commit
5b3f79a11a
1 changed files with 14 additions and 0 deletions
14
.github/workflows/gradle-wrapper-validation.yml
vendored
Normal file
14
.github/workflows/gradle-wrapper-validation.yml
vendored
Normal 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
|
||||
Loading…
Reference in a new issue