Skip to content

Commit

Permalink
pipeline update 4
Browse files Browse the repository at this point in the history
  • Loading branch information
RuaridhAnswer committed Dec 14, 2023
1 parent 56d2359 commit b638556
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --configuration Release --no-restore -nowarn:1591
run: dotnet build --debug Debug --no-restore -nowarn:1591

- name: Run NUnit tests
run: dotnet test --no-build --configuration Release --filter FullyQualifiedName~Answer.King.IntegrationTests.Tests.AnswerKingPostOrder.ProductOrder*
run: dotnet test --no-build --configuration Debug --filter FullyQualifiedName~Answer.King.IntegrationTests.Tests.AnswerKingPostOrder.ProductOrder*
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<NoWarn>CA1707;CS1591;CS1573;CS1591</NoWarn>
<RunAnalyzersDuringBuild>False</RunAnalyzersDuringBuild>
<RunAnalyzersDuringLiveAnalysis>False</RunAnalyzersDuringLiveAnalysis>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.24" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
Expand Down

0 comments on commit b638556

Please sign in to comment.