Skip to content

xunit v2.9.2

xunit v2.9.2 #569

Workflow file for this run

name: .NET Core
on: [ push, pull_request ]
jobs:
build:
strategy:
fail-fast: false
matrix:
dotnet: [ '3.1.x', '6.0.x', '7.0.x' ]
os: [ 'windows-latest', 'macos-latest', 'ubuntu-latest' ]
name: DotNet ${{ matrix.dotnet }} ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.2.0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Clean
run: dotnet clean --configuration Release && dotnet nuget locals all --clear
- name: NuGet Restore
run: dotnet restore
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
run: dotnet test --configuration Release