Bump Microsoft.NET.Test.Sdk and Microsoft.TestPlatform.TestHost #259
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: Edge Automated Build with .Net Core | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| Build: | |
| runs-on: windows-2025 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: 9.0.x | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Replace tokens | |
| uses: cschleiden/replace-tokens@v1 | |
| with: | |
| files: '["**/*.json"]' | |
| env: | |
| browser: Edge | |
| - name: Build | |
| run: dotnet build --no-restore | |
| - name: Test | |
| run: dotnet test --no-build --verbosity normal | |
| - name: Upload a Build Artifact | |
| uses: actions/[email protected] | |
| if: always() | |
| with: | |
| path: | | |
| JupiterCloud/Logs* | |
| if-no-files-found: warn |