Skip to content

Bump org.asciidoctor:asciidoctor-maven-plugin from 3.0.0 to 3.1.0 (#494) #853

Bump org.asciidoctor:asciidoctor-maven-plugin from 3.0.0 to 3.1.0 (#494)

Bump org.asciidoctor:asciidoctor-maven-plugin from 3.0.0 to 3.1.0 (#494) #853

Workflow file for this run

name: Build
on:
push:
branches:
- "master"
- "1.x"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
- 'LICENSE'
- 'README*'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B formatter:validate verify --file pom.xml
- name: Run Native Check (if maven build success)
if: success()
run: mvn -Dnative -Dquarkus.native.container-build=true -B verify --file pom.xml