mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-14 00:13:50 +00:00
* Bump actions/setup-dotnet from 4.3.1 to 5.0.0 Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 4.3.1 to 5.0.0. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v4.3.1...v5.0.0) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * trigger c# build workflow * Revert "trigger c# build workflow" This reverts commit cb0ea32e98d4bf6a5847afadf2603d552a8156e3. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: William Cheng <wing328hk@gmail.com>
46 lines
1.8 KiB
YAML
46 lines
1.8 KiB
YAML
name: Samples C# .Net 8 Clients
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 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/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/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@v5
|
|
- uses: actions/setup-dotnet@v5.0.0
|
|
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
|