Skip to content

Bump xunit.runner.visualstudio from 2.8.1 to 2.8.2 in the xunit group #442

Bump xunit.runner.visualstudio from 2.8.1 to 2.8.2 in the xunit group

Bump xunit.runner.visualstudio from 2.8.1 to 2.8.2 in the xunit group #442

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: 8.0.x
- name: Build
run: |
dotnet build --configuration Release
- name: Test
run: |
dotnet test --configuration Release
- name: Formatting
run: |
dotnet format --verify-no-changes