Bump System.Text.Json to v8.0.4 #47
Workflow file for this run
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: upgrade-assistant CI/CD pipeline | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
ci: | |
runs-on: windows-latest | |
environment: ci | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Setup/Install the .NET 8 SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Run .NET restore | |
run: dotnet restore UpgradeAssistant.Extensions.sln | |
- name: Run .NET tool restore | |
run: dotnet tool restore | |
- name: Build solution | |
run: dotnet build --configuration Debug --no-restore UpgradeAssistant.Extensions.sln | |
- name: Run unit tests | |
run: dotnet test --configuration Debug --no-restore UpgradeAssistant.Extensions.sln |