Skip to content

Commit

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

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

env:
BUILD_NUMBER: 999999

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 b3f7331

Please sign in to comment.