forked from loafle/openapi-generator-original
* [kotlin] Target correct library in jvm-spring-webclient sample * [kotlin] Fixed warning in jvm-spring-restclient * [kotlin-wiremock] fixed issue 7193 * [kotlin-wiremock] fixed wrong implementation of fromResponse * [kotlin-wiremock] forbidden API * [kotlin-wiremock] fixed wrong workflow trigger
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: Samples Kotlin WireMock
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- samples/server/petstore/kotlin-wiremock*/**
|
|
- samples/server/echo_api/kotlin-wiremock/**
|
|
pull_request:
|
|
paths:
|
|
- samples/server/petstore/kotlin-wiremock*/**
|
|
- samples/server/echo_api/kotlin-wiremock/**
|
|
|
|
jobs:
|
|
build:
|
|
name: Build Kotlin WireMock
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
- samples/server/petstore/kotlin-wiremock
|
|
- samples/server/petstore/kotlin-wiremock-responses
|
|
- samples/server/echo_api/kotlin-wiremock
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 11
|
|
- name: Cache maven dependencies
|
|
uses: actions/cache@v4
|
|
env:
|
|
cache-name: maven-repository
|
|
with:
|
|
path: |
|
|
~/.gradle
|
|
key: ${{ runner.os }}-${{ github.job }}-${{ env.cache-name }}-${{ hashFiles('**/pom.xml') }}
|
|
- name: Install Gradle wrapper
|
|
uses: eskatos/gradle-command-action@v3
|
|
with:
|
|
build-root-directory: ${{ matrix.sample }}
|
|
arguments: wrapper
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: ./gradlew build -x test
|