From de694f30b5e2f6fd62a00e5a622abe0a2411afb9 Mon Sep 17 00:00:00 2001 From: nea Date: Tue, 15 Aug 2023 20:33:58 +0200 Subject: Add github actions testing --- .github/workflows/gradle-wrapper-validation.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/gradle-wrapper-validation.yml (limited to '.github/workflows/gradle-wrapper-validation.yml') diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml new file mode 100644 index 0000000..f37f3e2 --- /dev/null +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -0,0 +1,12 @@ +name: "Validate Gradle Wrapper" +on: [push, pull_request] + +jobs: + validation: + name: "Validation" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + name: Checkout repository + - uses: gradle/wrapper-validation-action@v1 + name: Validate wrappers \ No newline at end of file -- cgit