This commit is contained in:
Stijn Bannink 2025-03-27 20:14:15 +01:00
parent 9b4d7363dc
commit c26b514e6c
Signed by: SBDeveloper
GPG key ID: B730712F2C3A9D7A
2 changed files with 25 additions and 2 deletions

View file

@ -0,0 +1,25 @@
on: [push]
jobs:
build:
runs-on: docker
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: MapReflectionAPI
path: target

View file

@ -1,2 +0,0 @@
jdk:
- openjdk11