Skip to content

Bump xunit from 2.5.3 to 2.9.3 in all test projects #26

Bump xunit from 2.5.3 to 2.9.3 in all test projects

Bump xunit from 2.5.3 to 2.9.3 in all test projects #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore
run: dotnet restore GauntletCI.slnx
- name: Build
run: dotnet build GauntletCI.slnx --no-restore --configuration Release
- name: Test
run: dotnet test GauntletCI.slnx --no-build --configuration Release --verbosity normal