Skip to content

Fixes #6169. Add OpenAPI Validator extension #8880

Fixes #6169. Add OpenAPI Validator extension

Fixes #6169. Add OpenAPI Validator extension #8880

Workflow file for this run

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Validate PR Style
on:
pull_request:
branches:
- main
- camel-main
- quarkus-main
- "[0-9]+.[0-9]+.x"
paths-ignore:
- '**.adoc'
- '**.md'
- 'Jenkinsfile'
- 'Jenkinsfile.*'
- 'KEYS'
- 'LICENSE.txt'
- 'NOTICE.txt'
- 'camel-quarkus-sbom/**'
- '**/META-INF/quarkus-extension.yaml'
- '.github/*.sh'
- '.github/*.yaml'
- '.github/*.yml'
- '.github/workflows/assign-issue-milestone.yaml'
- '.github/workflows/assign-wontfix-issue-milestone.yaml'
- '.github/workflows/camel-master-cron.yaml'
- '.github/workflows/check-dependency-convergence.yml'
- '.github/workflows/alternate-jdk-build.yaml'
- '.github/workflows/generate-sbom-main.yml'
- '.github/workflows/jdk21-build.yaml'
- '.github/workflows/jdk25-build.yaml'
- '.github/workflows/semeru17-build.yaml'
- '.github/workflows/semeru21-build.yaml'
- '.github/workflows/label-issue.yaml'
- '.github/workflows/pr-validate.yml'
- '.github/workflows/quarkus-lts-ci-build.yaml'
- '.github/workflows/quarkus-master-cron.yaml'
- '.github/workflows/synchronize-dependabot-branch.yaml'
- '.github/workflows/pr-doc-validation.yaml'
- 'docs/antora.yml'
- 'release-utils/**'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
LANG: en_US
MAVEN_OPTS: -Xmx3500m
CQ_MAVEN_ARGS: -V -ntp -e -Daether.connector.http.connectionMaxTtl=120
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
check-format:
if: github.repository == 'apache/camel-quarkus' && github.event.pull_request.user.login != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Setup apache-snapshots profile
if: github.base_ref == 'camel-main'
run: |
echo "BRANCH_OPTIONS=-Papache-snapshots" >> $GITHUB_ENV
- name: Setup oss-snapshots profile
if: github.base_ref == 'quarkus-main'
run: |
echo "BRANCH_OPTIONS=-Poss-snapshots" >> $GITHUB_ENV
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up JDK 17
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Maven Cache
id: maven-cache
uses: ./.github/actions/setup-maven-cache
- name: mvn validate
run: |
./mvnw ${CQ_MAVEN_ARGS} ${BRANCH_OPTIONS} -fae \
-DskipTests \
-Pcheck-format \
clean validate
- name: Save Maven Cache
uses: ./.github/actions/setup-maven-cache
if: always()
with:
action: save
cache-key: ${{ steps.maven-cache.outputs.cache-key }}