Skip to content

Bump quarkus.platform.version from 3.9.2 to 3.9.3 #208

Bump quarkus.platform.version from 3.9.2 to 3.9.3

Bump quarkus.platform.version from 3.9.2 to 3.9.3 #208

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: Java ${{ matrix.java }}
strategy:
fail-fast: false
matrix:
java: [17]
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B -V -T1C clean package -Pnative --file pom.xml