Skip to content

Commit

Permalink
Include Java 19 in CI
Browse files Browse the repository at this point in the history
Since Project Loom is a fairly significant internal architecture
change within Java, it is probably worth running CI against it
as a baseline.
  • Loading branch information
ascopes committed Jan 21, 2023
1 parent 96452fa commit ee8d1a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
# Definition of the build matrix
strategy:
matrix:
java: [11, 17]
java: [11, 17, 19]
entry:
- { mock-maker: 'mock-maker-default', member-accessor: 'member-accessor-default' }
- { mock-maker: 'mock-maker-inline', member-accessor: 'member-accessor-module' }
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
if: matrix.java == 11 && matrix.entry.mock-maker == 'mock-maker-default' # SINGLE-MATRIX-JOB
run: ./gradlew spotlessCheck

- name: 6. Build on Java ${{ matrix.java }} with ${{ matrix.entry.mock-maker }} and ${{ matrix.entry.member-accessor }}
- name: 6. Build on Java ${{ matrix.java }} with ${{ matrix.entry.mock-maker }} and ${{ matrix.entry.member-accessor }}
run: ./gradlew build idea --scan
env:
MOCK_MAKER: ${{ matrix.entry.mock-maker }}
Expand Down

0 comments on commit ee8d1a9

Please sign in to comment.