From 754892d4aec38b9347a33029c262b60d329d8168 Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Sat, 4 Jun 2022 22:18:43 -0600 Subject: [PATCH] Add workflow to run init-script tests --- .github/workflows/ci-init-script-check.yml | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci-init-script-check.yml diff --git a/.github/workflows/ci-init-script-check.yml b/.github/workflows/ci-init-script-check.yml new file mode 100644 index 0000000..84e8e7b --- /dev/null +++ b/.github/workflows/ci-init-script-check.yml @@ -0,0 +1,23 @@ +name: CI-init-script-check + +on: + push: + +jobs: + test-init-scripts: + runs-on: ubuntu-latest + steps: + - name: Checkout sources + uses: actions/checkout@v3 + - name: Setup Java + uses: actions/setup-java@v3 + with: + distribution: temurin + java-version: 8 + - name: Setup Gradle + uses: ./ + with: + cache-read-only: false # For testing, allow writing cache entries on non-default branches + - name: Run integration tests + working-directory: test/test-init-scripts + run: ./gradlew check