Skip to content

Bump xunit from 2.6.6 to 2.8.0 #148

Bump xunit from 2.6.6 to 2.8.0

Bump xunit from 2.6.6 to 2.8.0 #148

Workflow file for this run

name: .NET Core Build Only
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build_only:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: [ubuntu-latest, windows-2019]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.100
- name: Install dependencies
run: dotnet restore
- name: Build on Debug
run: dotnet build --configuration Debug --no-restore
- name: Build on Release
run: dotnet build --configuration Release --no-restore