Skip to content

Bump xunit from 2.4.2 to 2.8.1 in /src #9

Bump xunit from 2.4.2 to 2.8.1 in /src

Bump xunit from 2.4.2 to 2.8.1 in /src #9

Workflow file for this run

name: Pull Request Check
on:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build project
run: dotnet build --configuration Release ./src
- name: Test project
run: dotnet test --configuration Release ./src