Bump RestSharp from 106.15.0 to 112.0.0 in /src #883
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/checkout@v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4.0.1 | |
with: | |
dotnet-version: 8.0.200 # Locked until VS/MSBuild is compatible with 8.0.300 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1.3 | |
- name: Build | |
run: msbuild src -p:Configuration=Release -restore -m | |
- name: Upload assets | |
uses: actions/upload-artifact@v4.4.0 | |
with: | |
name: assets | |
path: src/ServiceInsight/bin/Release/ | |
retention-days: 7 | |
- name: Run tests | |
uses: Particular/run-tests-action@v1.7.0 |