From 570a2f2ab19d7947e22c1d91adcfe23f3a894fb5 Mon Sep 17 00:00:00 2001 From: Elliot Ford Date: Mon, 7 Aug 2023 13:56:10 +0100 Subject: [PATCH] setup Java in release workflow This is needed in order for the SETH tests to run without erroring. These weren't running before anyway because the model pack wasn't set, which meant that those tests were skipped anyway, so we never realised that this was a potential issue. --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07a29303..7c241edb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,6 +33,12 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + - name: bump version without commit or tag and build id: build run: |