Skip to content

Commit af49579

Browse files
committed
testing different JDKs
1 parent 986a91e commit af49579

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,15 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ ubuntu-latest, windows-latest, macos-latest ]
26+
jdk: [1.8, 11, 17, 21, 25]
2627
steps:
2728
# Checkout code
2829
- uses: actions/checkout@v4
2930
# Build/test for JDK
30-
- name: Setup JDK 8
31+
- name: Setup JDK
3132
uses: actions/setup-java@v1
3233
with:
33-
java-version: 1.8
34+
java-version: ${{ matrix.jdk }}
3435
- name: Cache Maven packages
3536
uses: actions/cache@v3
3637
with:

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ JVM Library (e.g., for Java and Kotlin) to support [OpenAPI Overlay](https://git
33

44
Currently supporting Overlay specs __1.1.0__, and schemas/overlays in either JSON or YAML.
55

6+
Working for JDK 8 and above.
7+
68

79
## Example Usage
810

0 commit comments

Comments
 (0)