-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into nullable-annotation…
…-for-spring-generator
- Loading branch information
Showing
3,496 changed files
with
312,662 additions
and
36,682 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Samples C# .Net 8 Client Echo API | ||
|
||
on: | ||
push: | ||
paths: | ||
- samples/client/echo_api/csharp/restsharp/net8/** | ||
pull_request: | ||
paths: | ||
- samples/client/echo_api/csharp/restsharp/net8/** | ||
jobs: | ||
build: | ||
name: Build .Net clients | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sample: | ||
# clients | ||
- samples/client/echo_api/csharp/restsharp/net8/EchoApi | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: '8.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 | ||
dotnet test Org.OpenAPITools.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Samples C# .Net 8 Client | ||
|
||
on: | ||
push: | ||
paths: | ||
- samples/client/petstore/csharp/restsharp/net8/** | ||
pull_request: | ||
paths: | ||
- samples/client/petstore/csharp/restsharp/net8/** | ||
jobs: | ||
build: | ||
name: Build .Net clients | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sample: | ||
- samples/client/petstore/csharp/restsharp/net8/ParameterMappings/ | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: '8.0.x' | ||
- name: Build | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet build Org.OpenAPITools.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
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@v4 | ||
- uses: actions/[email protected] | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Samples C# .Net 9 Clients | ||
|
||
on: | ||
push: | ||
paths: | ||
- samples/client/petstore/csharp/generichost/latest/** | ||
- samples/client/petstore/csharp/generichost/net9/** | ||
- samples/client/petstore/csharp/httpclient/net9/** | ||
- samples/client/petstore/csharp/restsharp/net9/** | ||
- samples/client/petstore/csharp/unityWebRequest/net9/** | ||
pull_request: | ||
paths: | ||
- samples/client/petstore/csharp/generichost/latest/** | ||
- samples/client/petstore/csharp/generichost/net9/** | ||
- samples/client/petstore/csharp/httpclient/net9/** | ||
- samples/client/petstore/csharp/restsharp/net9/** | ||
- samples/client/petstore/csharp/unityWebRequest/net9/** | ||
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/net9/AllOf | ||
- samples/client/petstore/csharp/generichost/net9/AnyOf | ||
- samples/client/petstore/csharp/generichost/net9/AnyOfNoCompare | ||
- samples/client/petstore/csharp/generichost/net9/FormModels | ||
# - samples/client/petstore/csharp/generichost/net9/ManualPetstoreTests | ||
# - samples/client/petstore/csharp/generichost/net9/ManualSourceGenerationTests | ||
- samples/client/petstore/csharp/generichost/net9/NullReferenceTypes | ||
- samples/client/petstore/csharp/generichost/net9/OneOf | ||
- samples/client/petstore/csharp/generichost/net9/Petstore | ||
- samples/client/petstore/csharp/generichost/net9/SourceGeneration | ||
- samples/client/petstore/csharp/generichost/net9/UseDateTimeForDate | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: '9.0.101' | ||
- name: Build | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet build Org.OpenAPITools.sln | ||
- name: Test | ||
working-directory: ${{ matrix.sample }} | ||
run: dotnet test Org.OpenAPITools.sln |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.