Skip to content

Bump xunit from 2.7.1 to 2.8.0 #263

Bump xunit from 2.7.1 to 2.8.0

Bump xunit from 2.7.1 to 2.8.0 #263

Workflow file for this run

name: Merge Check Build and Test
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore
- name: Test
run: dotnet test -c Release --no-build --verbosity normal