forked from loafle/openapi-generator-original
* fixed missing output * bug fix * add new sample * build samples again * delete sample * move the sample and add to github workflow * remove model not needed for this test * handle specs with no models
49 lines
2.0 KiB
YAML
49 lines
2.0 KiB
YAML
name: Samples C# .Net 8 Clients
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/client/petstore/csharp/generichost/latest/**
|
|
- samples/client/petstore/csharp/generichost/net8/**
|
|
- samples/client/petstore/csharp/httpclient/net8/**
|
|
- samples/client/petstore/csharp/restsharp/net8/**
|
|
- samples/client/petstore/csharp/unityWebRequest/net8/**
|
|
pull_request:
|
|
paths:
|
|
- samples/client/petstore/csharp/generichost/latest/**
|
|
- samples/client/petstore/csharp/generichost/net8/**
|
|
- samples/client/petstore/csharp/httpclient/net8/**
|
|
- samples/client/petstore/csharp/restsharp/net8/**
|
|
- samples/client/petstore/csharp/unityWebRequest/net8/**
|
|
jobs:
|
|
build:
|
|
name: Build .Net projects
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
- samples/client/petstore/csharp/generichost/latest/Tags
|
|
- samples/client/petstore/csharp/generichost/net8/AllOf
|
|
- samples/client/petstore/csharp/generichost/net8/AnyOf
|
|
- samples/client/petstore/csharp/generichost/net8/AnyOfNoCompare
|
|
- samples/client/petstore/csharp/generichost/net8/FormModels
|
|
- samples/client/petstore/csharp/generichost/net8/ManualPetstoreTests
|
|
- samples/client/petstore/csharp/generichost/net8/ManualSourceGenerationTests
|
|
- samples/client/petstore/csharp/generichost/net8/NullReferenceTypes
|
|
- samples/client/petstore/csharp/generichost/net8/OneOf
|
|
- samples/client/petstore/csharp/generichost/net8/Petstore
|
|
- samples/client/petstore/csharp/generichost/net8/SourceGeneration
|
|
- samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-dotnet@v4.0.1
|
|
with:
|
|
dotnet-version: '8.0.x'
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: dotnet build Org.OpenAPITools.sln
|
|
- name: Test
|
|
working-directory: ${{ matrix.sample }}
|
|
run: dotnet test Org.OpenAPITools.sln
|