Skip to content

Update io.quarkus to v3.14.4 #1115

Update io.quarkus to v3.14.4

Update io.quarkus to v3.14.4 #1115

Workflow file for this run

name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Grant execute permission for mvnw
run: chmod +x mvnw
- name: Build with Maven
run: ./mvnw -B package --file pom.xml
- name: Upload reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
build/reports
target/surefire-reports