forked from loafle/openapi-generator-original
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>
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
name: Samples Java Client JDK17
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/client/petstore/java/resttemplate-jakarta/**
|
|
- samples/client/petstore/java/webclient-jakarta/**
|
|
pull_request:
|
|
paths:
|
|
- samples/client/petstore/java/resttemplate-jakarta/**
|
|
- samples/client/petstore/java/webclient-jakarta/**
|
|
jobs:
|
|
build:
|
|
name: Build Java Client JDK17
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# clients
|
|
- samples/client/petstore/java/resttemplate-jakarta
|
|
- samples/client/petstore/java/webclient-jakarta
|
|
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 with Maven
|
|
working-directory: ${{ matrix.sample }}
|
|
run: mvn clean package
|
|
- name: Build with Gradle
|
|
working-directory: ${{ matrix.sample }}
|
|
run: gradle clean build
|