Skip to content

Commit

Permalink
Merge pull request #610 from groybal/UPSE-294
Browse files Browse the repository at this point in the history
UPSE-294: added Java 11 to github build
  • Loading branch information
loulou2u authored Jan 18, 2023
2 parents 71668e3 + f0004ac commit b94c0ec
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ on:

jobs:
test:
name: '${{ matrix.platform }} with Java 8'
name: '${{ matrix.platform }} with Java ${{ matrix.java-version }}'
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
- macos-latest
java-version:
- 8
- 11
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
Expand All @@ -24,6 +27,6 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: adopt-hotspot
java-version: 8
java-version: ${{ matrix.java-version }}
- name: Test
run: ./gradlew check -S --no-daemon --no-parallel

0 comments on commit b94c0ec

Please sign in to comment.