We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2788ced commit b52bfffCopy full SHA for b52bfff
2 files changed
.github/workflows/ci.yml
@@ -93,7 +93,7 @@ jobs:
93
ForEach-Object { dotnet sourcelink test $_; if ($LASTEXITCODE) { throw "SourceLink test failed for $_" } }
94
95
- name: Test
96
- run: dotnet pwsh ./build.ps1 -Test -NoBuild -Configuration ${{ env.CONFIGURATION }}
+ run: dotnet test --no-build --configuration ${{ env.CONFIGURATION }}
97
98
- name: Integration Tests (Windows)
99
if: runner.os == 'Windows'
build.ps1
@@ -12,7 +12,7 @@
12
Build the solution (default parameter set).
13
14
.PARAMETER Test
15
- Run tests for both Roslyn variants.
+ Run tests. Note: May fail on non-Windows platforms if .NET Framework tests cannot run.
16
17
.PARAMETER Pack
18
Create a NuGet package containing both analyzer variants.
0 commit comments