mirror of
https://github.com/bmlong137/maven-tiles
synced 2025-09-10 14:11:08 +00:00
build: Add java 19 workflow
Change-Id: Iecc155f044b26a69e1988308403cafabb55c19dc
This commit is contained in:
21
.github/workflows/java19.yml
vendored
Normal file
21
.github/workflows/java19.yml
vendored
Normal 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
2
.gitignore
vendored
@@ -10,5 +10,7 @@ target
|
||||
!.gitattributes
|
||||
!.gitkeep
|
||||
|
||||
!.github
|
||||
|
||||
# and iDEA
|
||||
*.iml
|
||||
|
Reference in New Issue
Block a user