Fixed C# 'required' modifier in request DTO's throwing exceptions bef… #199
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
name: Build and Test | |
on: [ push, pull_request ] | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
env: | |
IS_CI_BUILD: 'true' | |
SOLUTION_PATH: 'src/SaaStack.sln' | |
TESTINGONLY_BUILD_CONFIGURATION: 'Release' | |
DEPLOY_BUILD_CONFIGURATION: 'ReleaseForDeploy' | |
DOTNET_VERSION: 8.0.200 | |
jobs: | |
build: | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{env.DOTNET_VERSION}} | |
- name: Restore dependencies | |
run: dotnet restore "${{env.SOLUTION_PATH}}" | |
- name: Build for Azure Testing | |
run: dotnet build --configuration ${{env.TESTINGONLY_BUILD_CONFIGURATION}} "${{env.SOLUTION_PATH}}" /p:HostingPlatform=HOSTEDONAZURE | |
- name: Build for AWS Testing | |
run: dotnet build --configuration ${{env.TESTINGONLY_BUILD_CONFIGURATION}} "${{env.SOLUTION_PATH}}" /p:HostingPlatform=HOSTEDONAWS | |
- name: Build for Azure Deploy | |
run: dotnet build --configuration ${{env.DEPLOY_BUILD_CONFIGURATION}} "${{env.SOLUTION_PATH}}" /p:HostingPlatform=HOSTEDONAZURE | |
- name: Build for AWS Deploy | |
run: dotnet build --configuration ${{env.DEPLOY_BUILD_CONFIGURATION}} "${{env.SOLUTION_PATH}}" /p:HostingPlatform=HOSTEDONAWS | |
test: | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{env.DOTNET_VERSION}} | |
- name: Restore dependencies | |
run: dotnet restore "${{env.SOLUTION_PATH}}" | |
- name: Build for CI Testing (for Azure) | |
run: dotnet build --configuration ${{env.TESTINGONLY_BUILD_CONFIGURATION}} "${{env.SOLUTION_PATH}}" /p:HostingPlatform=HOSTEDONAZURE | |
- name: Unit Test | |
continue-on-error: false | |
run: > | |
dotnet test --no-build --verbosity normal | |
--configuration ${{env.TESTINGONLY_BUILD_CONFIGURATION}} | |
--filter:"Category=Unit|Category=Unit.Architecture" --collect:"XPlat Code Coverage" --results-directory:"src/TestResults/csharp" | |
--logger:"trx" | |
--logger:"junit;LogFileName={assembly}.junit.xml;MethodFormat=Class;FailureBodyFormat=Verbose" | |
--test-adapter-path:. "${{env.SOLUTION_PATH}}" | |
- name: Integration Test | |
continue-on-error: true | |
run: > | |
dotnet test --no-build --verbosity normal | |
--configuration ${{env.TESTINGONLY_BUILD_CONFIGURATION}} | |
--filter:"Category=Integration.API|Category=Integration.Website" --collect:"XPlat Code Coverage" --results-directory:"src/TestResults/csharp" | |
--logger:"trx" | |
--logger:"junit;LogFileName={assembly}.junit.xml;MethodFormat=Class;FailureBodyFormat=Verbose" | |
--test-adapter-path:. "${{env.SOLUTION_PATH}}" | |
- name: Testing Report | |
uses: dorny/[email protected] | |
if: success() || failure() | |
with: | |
name: All Tests | |
path: 'src/TestResults/csharp/**/*.trx' | |
reporter: dotnet-trx | |
fail-on-error: 'false' |