microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
.github/workflows/gradle-wrapper-validation.yml
14lines · modecode
| 1 | # Check gradle-wrapper.jar checksums against official Gradle releases. |
| 2 | # See: https://github.com/marketplace/actions/gradle-wrapper-validation |
| 3 | # This workflow was copied from the link above. |
| 4 | |
| 5 | name: "Validate Gradle Wrapper" |
| 6 | on: [push, pull_request] |
| 7 | |
| 8 | jobs: |
| 9 | validation: |
| 10 | name: "Validation" |
| 11 | runs-on: ubuntu-latest |
| 12 | steps: |
| 13 | - uses: actions/checkout@v3 |
| 14 | - uses: gradle/wrapper-validation-action@v1 |
| 15 | |