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>
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: Samples Java Helidon
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/client/petstore/java-helidon-client/**
|
|
- samples/server/petstore/java-helidon-server/**
|
|
pull_request:
|
|
paths:
|
|
- samples/client/petstore/java-helidon-client/**
|
|
- samples/server/petstore/java-helidon-server/**
|
|
jobs:
|
|
build:
|
|
name: Build Java Helidon
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
- samples/client/petstore/java-helidon-client/mp
|
|
- samples/client/petstore/java-helidon-client/se
|
|
- samples/server/petstore/java-helidon-server/mp
|
|
- samples/server/petstore/java-helidon-server/se
|
|
version: [17]
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: ${{ matrix.version }}
|
|
- 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
|