forked from loafle/openapi-generator-original
* fix validation with discriminator using parent instead * add new files * add new workflow * fix
32 lines
845 B
YAML
32 lines
845 B
YAML
name: Samples C# .Net 6
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/client/echo_api/csharp-restsharp/**
|
|
pull_request:
|
|
paths:
|
|
- samples/client/echo_api/csharp-restsharp/**
|
|
jobs:
|
|
build:
|
|
name: Build .Net clients
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
# clients
|
|
- samples/client/echo_api/csharp-restsharp/
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-dotnet@v3.2.0
|
|
with:
|
|
dotnet-version: '6.0.x'
|
|
- name: Run echo server
|
|
run: |
|
|
git clone https://github.com/wing328/http-echo-server -b openapi-generator-test-server
|
|
(cd http-echo-server && npm install && npm start &)
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: dotnet build Org.OpenAPITools.sln
|