build: Add java 19 workflow

Change-Id: Iecc155f044b26a69e1988308403cafabb55c19dc
This commit is contained in:
Mark Derricutt
2022-10-19 08:31:31 +13:00
parent b1aeac62bd
commit 30d5092716
2 changed files with 23 additions and 0 deletions

21
.github/workflows/java19.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Integration Tests on Java 19
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 19
uses: actions/setup-java@v3
with:
java-version: 19
distribution: 'temurin'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots install -Prun-its

2
.gitignore vendored
View File

@@ -10,5 +10,7 @@ target
!.gitattributes
!.gitkeep
!.github
# and iDEA
*.iml