mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-18 08:31:20 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
64 lines
2.3 KiB
YAML
64 lines
2.3 KiB
YAML
name: Samples JDK17
|
|
on:
|
|
push:
|
|
paths:
|
|
# clients
|
|
- samples/openapi3/client/petstore/spring-cloud-3/**
|
|
- samples/client/petstore/java-helidon-client/mp/**
|
|
- samples/client/petstore/java-helidon-client/se/**
|
|
- samples/client/petstore/spring-http-interface-reactive/**
|
|
- samples/client/petstore/spring-http-interface/**
|
|
# servers
|
|
- samples/openapi3/server/petstore/springboot-3/**
|
|
- samples/server/petstore/java-helidon-server/mp/**
|
|
- samples/server/petstore/java-helidon-server/se/**
|
|
pull_request:
|
|
paths:
|
|
# clients
|
|
- samples/openapi3/client/petstore/spring-cloud-3/**
|
|
- samples/client/petstore/java-helidon-client/mp/**
|
|
- samples/client/petstore/java-helidon-client/se/**
|
|
- samples/client/petstore/spring-http-interface-reactive/**
|
|
- samples/client/petstore/spring-http-interface/**
|
|
# servers
|
|
- samples/openapi3/server/petstore/springboot-3/**
|
|
- samples/server/petstore/java-helidon-server/mp/**
|
|
- samples/server/petstore/java-helidon-server/se/**
|
|
jobs:
|
|
build:
|
|
name: Build with JDK17
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# clients
|
|
- samples/openapi3/client/petstore/spring-cloud-3
|
|
- samples/client/petstore/java-helidon-client/mp
|
|
- samples/client/petstore/java-helidon-client/se
|
|
- samples/client/petstore/spring-http-interface-reactive
|
|
- samples/client/petstore/spring-http-interface
|
|
# servers
|
|
- samples/openapi3/server/petstore/springboot-3
|
|
- samples/server/petstore/java-helidon-server/mp
|
|
- samples/server/petstore/java-helidon-server/se
|
|
- samples/client/petstore/spring-http-interface-reactive
|
|
- samples/client/petstore/spring-http-interface
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 17
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v3
|
|
env:
|
|
cache-name: maven-repository
|
|
with:
|
|
path: |
|
|
~/.m2
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: mvn clean package
|