From 1624294e88d665ad0230d13a34f4160fe21d8bf4 Mon Sep 17 00:00:00 2001 From: Tobias Diez Date: Sun, 23 Feb 2020 18:44:27 +0100 Subject: [PATCH] Integrate gradle validation in normal test workflow --- .github/workflows/gradle-wrapper-validation.yml | 14 -------------- .github/workflows/tests.yml | 8 ++++++++ 2 files changed, 8 insertions(+), 14 deletions(-) delete mode 100644 .github/workflows/gradle-wrapper-validation.yml diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml deleted file mode 100644 index 6cb3bb97290..00000000000 --- a/.github/workflows/gradle-wrapper-validation.yml +++ /dev/null @@ -1,14 +0,0 @@ -# This is /~https://github.com/marketplace/actions/gradle-wrapper-validation -# It ensures that the jar file is from gradle and not by a strange third party. - -name: "Validate Gradle Wrapper" -on: [push, pull_request] - -jobs: - validation: - name: "Validation" - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: gradle/wrapper-validation-action@v1 - diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e056bfd16a4..adbebcba3c1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -208,3 +208,11 @@ jobs: CI: "false" # we pretend to run locally - even if tests fail on the CI, they count towards test coverage CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} DBMS: "postgresql" + # This is /~https://github.com/marketplace/actions/gradle-wrapper-validation + # It ensures that the jar file is from gradle and not by a strange third party. + gradlevalidation: + name: "Validate Gradle Wrapper" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: gradle/wrapper-validation-action@v1