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 Nov 14, 2022
1 parent 0052e2f commit 3fd2c1c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -29,7 +29,13 @@ jobs:
# Definition of the build matrix
strategy:
matrix:
java: [8, 11, 17]
java:
# Run CI against LTS releases
- 8
- 11
- 17
# Run against JDK-19 to test project loom support works as expected.
- 19
mock-maker: ['mock-maker-default', 'mock-maker-inline']

# All build steps
Expand Down

0 comments on commit 3fd2c1c

Please sign in to comment.