Skip to content

Bump quarkus.version from 3.9.1 to 3.9.4 (#307) #655

Bump quarkus.version from 3.9.1 to 3.9.4 (#307)

Bump quarkus.version from 3.9.1 to 3.9.4 (#307) #655

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
- "jakarta"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'README*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [17]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v4
name: checkout
- uses: actions/setup-java@v4
name: set up jdk ${{matrix.java}}
with:
distribution: 'temurin'
java-version: ${{matrix.java}}
cache: 'maven'
cache-dependency-path: '**/pom.xml'
- name: build with maven
run: mvn formatter:validate verify --file pom.xml -Pnative