Skip to content

Bump xunit from 2.7.1 to 2.8.0 (#2913) #1529

Bump xunit from 2.7.1 to 2.8.0 (#2913)

Bump xunit from 2.7.1 to 2.8.0 (#2913) #1529

Workflow file for this run

name: CI Build
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v1
- name: Setup .NET 6
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.*
- name: Build with dotnet
run: ./build.sh --verbosity=verbose
shell: bash