Skip to content

Bump xunit from 2.4.2 to 2.5.0 #264

Bump xunit from 2.4.2 to 2.5.0

Bump xunit from 2.4.2 to 2.5.0 #264

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Build
run: |
dotnet build --configuration Release
- name: Test
run: |
dotnet test --configuration Release
- name: Formatting
run: |
dotnet format --verify-no-changes