Skip to content

Commit 5573bb2

Browse files
committed
Added support for Java 11 and 17
1 parent 7531ff7 commit 5573bb2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ on: [push, pull_request]
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6+
matrix:
7+
java: [20, 17, 11]
68
steps:
79
- uses: actions/checkout@v3
810
- uses: actions/setup-java@v3
911
with:
10-
java-version: 20
12+
java-version: ${{ matrix.java }}
1113
distribution: temurin
1214
- uses: ankane/setup-postgres@v1
1315
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.2 (unreleased)
2+
3+
- Added support for Java 11 and 17
4+
15
## 0.1.1 (2023-03-09)
26

37
- Removed dependency on `scala-library`

0 commit comments

Comments
 (0)