forked from loafle/openapi-generator-original
Bumps [actions/setup-dotnet](https://github.com/actions/setup-dotnet) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/actions/setup-dotnet/releases) - [Commits](https://github.com/actions/setup-dotnet/compare/v4.2.0...v4.3.0) --- updated-dependencies: - dependency-name: actions/setup-dotnet dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
name: Samples C# .Net 8 FastEndpoints Server
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- samples/server/petstore/aspnet/fastendpoints/**
|
|
- samples/server/petstore/aspnet/fastendpoints-*/**
|
|
pull_request:
|
|
paths:
|
|
- samples/server/petstore/aspnet/fastendpoints/**
|
|
- samples/server/petstore/aspnet/fastendpoints-*/**
|
|
jobs:
|
|
build:
|
|
name: Build .Net 8 FastEndpoints servers
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
sample:
|
|
- samples/server/petstore/aspnet/fastendpoints
|
|
- samples/server/petstore/aspnet/fastendpoints-useApiVersioning
|
|
- samples/server/petstore/aspnet/fastendpoints-useAuthentication
|
|
- samples/server/petstore/aspnet/fastendpoints-useProblemDetails
|
|
- samples/server/petstore/aspnet/fastendpoints-useRecords
|
|
- samples/server/petstore/aspnet/fastendpoints-useResponseCaching
|
|
- samples/server/petstore/aspnet/fastendpoints-useValidators
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-dotnet@v4.3.0
|
|
with:
|
|
dotnet-version: '8.0.x'
|
|
- name: Build
|
|
working-directory: ${{ matrix.sample }}
|
|
run: dotnet build Org.OpenAPITools.sln
|