Skip to content

Commit

Permalink
setup Java in release workflow
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EFord36 committed Aug 7, 2023
1 parent 9740cfb commit 570a2f2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 570a2f2

Please sign in to comment.