Bump Microsoft.NET.Test.Sdk from 17.10.0 to 17.11.1 #49
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: CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# Install the .NET Core workload | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild | |
- name: Setup MSBuild.exe | |
uses: microsoft/[email protected] | |
- name: Execute build | |
run: dotnet build | |
# Execute all unit tests in the solution | |
- name: Execute unit tests | |
run: dotnet test | |
- name: Publish desktop app | |
run: dotnet publish Tsukuru.App/Tsukuru.App.csproj | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Package | |
path: Tsukuru.App\bin\Release\net8.0-windows\publish\ |