update buildscript to 1700970468 #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Validates the integrity of the Gradle wrapper | |
name: Validate Gradle Wrapper | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'gradle/**' | |
pull_request: | |
branches: | |
- '*' | |
paths: | |
- 'gradle/**' | |
# if a second commit is pushed quickly after the first, cancel the first one's build | |
concurrency: | |
group: gradle-wrapper-validation-${{github.head_ref}} | |
cancel-in-progress: true | |
jobs: | |
Validation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 |