Skip to content

Bump xunit from 2.6.4 to 2.6.5 #437

Bump xunit from 2.6.4 to 2.6.5

Bump xunit from 2.6.4 to 2.6.5 #437

Workflow file for this run

name: "CI"
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
DOTNET_CLI_TELEMETRY_OPTOUT: true
DOTNET_NOLOGO: true
jobs:
build:
strategy:
fail-fast: false
matrix:
runs-on: [macOS-latest, ubuntu-latest, windows-latest]
name: ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: DotNet Info
run: dotnet --info
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build -c Release --no-restore