Skip to content

Commit

Permalink
Create maven.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
VISTALL authored Jul 22, 2024
1 parent ee5d322 commit 665922b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: jdk21

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: mvn -U -T 1C -Dmaven.javadoc.skip=true -B -V clean package

0 comments on commit 665922b

Please sign in to comment.