Skip to content

build(deps): bump xunit from 2.4.2 to 2.5.1 #439

build(deps): bump xunit from 2.4.2 to 2.5.1

build(deps): bump xunit from 2.4.2 to 2.5.1 #439

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
BuildConfiguration: [Release]
env:
DOTNET_NOLOGO: 1
Configuration: ${{ matrix.BuildConfiguration }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # all history
- uses: actions/setup-dotnet@v3
- run: dotnet --info
- run: dotnet tool restore
- run: dotnet nbgv get-version
- run: dotnet restore -v m
- run: dotnet build --no-restore
- run: dotnet test --no-build
- name: Publish NuGet artifacts
uses: actions/upload-artifact@v3
with:
name: nugets-${{ runner.os }}
path: bin/Packages/${{ env.Configuration }}