diff options
author | Nassim Jahnke <[email protected]> | 2023-07-11 23:25:02 +0200 |
---|---|---|
committer | Nassim Jahnke <[email protected]> | 2023-07-11 23:25:02 +0200 |
commit | f9473d9928a922101bf5a1816c93e70a24bc7240 (patch) | |
tree | dd96f09e86a9d057a05e1d06b342b63d8078b04b /.github | |
parent | b3dc7a3b4b6a750e182fed1579eb69d99456fbaf (diff) | |
download | Paper-f9473d9928a922101bf5a1816c93e70a24bc7240.tar.gz Paper-f9473d9928a922101bf5a1816c93e70a24bc7240.zip |
[ci skip] Add gradle wrapper validation action
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 20ca9be6b2..4e1c36e150 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,10 +26,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: JDK ${{ matrix.java }} - uses: actions/[email protected] + uses: actions/[email protected] with: java-version: ${{ matrix.java }} distribution: 'temurin' + + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@v1 - name: Setup Gradle uses: gradle/gradle-build-action@v2 |