From 02a62896d1d48ff8538fc5d9ab7557a51f58994f Mon Sep 17 00:00:00 2001 From: evanchooly Date: Tue, 20 Aug 2024 18:57:14 -0400 Subject: [PATCH] try a simpler workflow to get things working --- .github/workflows/develocity.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/develocity.yml diff --git a/.github/workflows/develocity.yml b/.github/workflows/develocity.yml new file mode 100644 index 00000000000..9673fd5273c --- /dev/null +++ b/.github/workflows/develocity.yml @@ -0,0 +1,25 @@ +name: Develocity testbed + +on: + push: + workflow_dispatch: + +env: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} + +jobs: + develocity: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: 17 + distribution: 'zulu' + server-id: central + + - name: Build without Tests + run: ./mvnw -U install -DskipTests