Skip to content

Bump quarkus.version from 3.0.0.Final to 3.1.0.Final #460

Bump quarkus.version from 3.0.0.Final to 3.1.0.Final

Bump quarkus.version from 3.0.0.Final to 3.1.0.Final #460

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: [11, 17]
name: build with jdk ${{matrix.java}}
steps:
- uses: actions/checkout@v2
name: checkout
- uses: actions/setup-java@v1
name: set up jdk ${{matrix.java}}
with:
java-version: ${{matrix.java}}
- uses: actions/cache@v2
name: Cache local Maven repository
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: build with maven
run: mvn formatter:validate verify --file pom.xml -Pnative