Bump Microsoft.CodeAnalysis.NetAnalyzers from 10.0.300 to 10.0.301 #14
Workflow file for this run
This file contains hidden or 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: Windows Smoke | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - "**/*.cs" | |
| - "**/*.csproj" | |
| - "*.sln" | |
| - ".github/workflows/windows-smoke.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| dotnet: | |
| runs-on: [self-hosted, Windows, X64, packer-windows] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: "10.0.x" | |
| - name: Restore | |
| run: dotnet restore slskNet.Runtime.sln | |
| - name: Build | |
| run: dotnet build slskNet.Runtime.sln --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test slskNet.Runtime.sln --configuration Release --no-build |