Bump actions/setup-dotnet from 4.2.0 to 4.3.0 #988
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 | |
- release-* | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
build: | |
name: Windows | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: 8.0.200 # Locked until VS/MSBuild is compatible with 8.0.300 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Build | |
run: msbuild src -p:Configuration=Release -restore -m | |
- name: Upload assets | |
uses: actions/[email protected] | |
with: | |
name: assets | |
path: src/ServiceInsight/bin/Release/ | |
retention-days: 7 | |
- name: Run tests | |
uses: Particular/[email protected] |