Skip to content

Bump actions/setup-dotnet from 4.0.1 to 4.1.0 #915

Bump actions/setup-dotnet from 4.0.1 to 4.1.0

Bump actions/setup-dotnet from 4.0.1 to 4.1.0 #915

Workflow file for this run

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]