Skip to content

Commit

Permalink
Fix Min Java version required
Browse files Browse the repository at this point in the history
  • Loading branch information
javiertuya committed Jul 17, 2024
1 parent 24aa9d2 commit 81773bc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
#Java 11 only required to run the Market SUT
if: ${{ matrix.scope != 'Market' }}
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
- uses: actions/setup-java@v4
if: ${{ matrix.scope == 'Market' }}
with:
distribution: 'temurin'
java-version: '11'
Expand Down

0 comments on commit 81773bc

Please sign in to comment.